fix some logging messages

This commit is contained in:
jonaswinkler 2021-02-06 15:30:47 +01:00
parent 1d50d017ac
commit e35723e7af
2 changed files with 3 additions and 3 deletions

View File

@ -200,8 +200,6 @@ class Consumer(LoggingMixin):
MESSAGE_UNSUPPORTED_TYPE,
f"Unsupported mime type {mime_type}"
)
else:
self.log("debug", f"Parser: {parser_class.__name__}")
# Notify all listeners that we're going to do some work.
@ -222,6 +220,8 @@ class Consumer(LoggingMixin):
document_parser = parser_class(self.logging_group, progress_callback)
self.log("debug", f"Parser: {type(document_parser).__name__}")
# However, this already created working directories which we have to
# clean up.

View File

@ -11,7 +11,7 @@ logger = logging.getLogger("paperless.matching")
def log_reason(matching_model, document, reason):
class_name = type(matching_model).__name__
logger.debug(
f"Assigning {class_name} {matching_model.name} to document "
f"{class_name} {matching_model.name} matched on document "
f"{document} because {reason}")