Extra output when finished with the splitting

This commit is contained in:
Trenton H 2023-12-14 12:51:29 -08:00
parent b9cfff75fc
commit b7ea8eb518

View File

@ -324,7 +324,7 @@ class BarcodeReader:
logger.warning("No pages to split on!") logger.warning("No pages to split on!")
return False return False
tmp_dir = Path(tempfile.mkdtemp()).resolve() tmp_dir = Path(tempfile.mkdtemp(prefix="paperless-barcode-split-")).resolve()
from documents import tasks from documents import tasks
@ -342,5 +342,5 @@ class BarcodeReader:
# All the same metadata # All the same metadata
overrides, overrides,
) )
logger.info("Barcode splitting complete!")
return True return True