From e35723e7af318f3fa1bc82c5c77fb05e00679eb2 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Sat, 6 Feb 2021 15:30:47 +0100 Subject: [PATCH] fix some logging messages --- src/documents/consumer.py | 4 ++-- src/documents/matching.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 23988c7c1..3baedb5c3 100755 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -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. diff --git a/src/documents/matching.py b/src/documents/matching.py index edbbdc1b8..3b70930b6 100644 --- a/src/documents/matching.py +++ b/src/documents/matching.py @@ -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}")