mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
error logging.
This commit is contained in:
parent
0565118a01
commit
9677631bb2
@ -132,6 +132,9 @@ class Consumer(LoggingMixin):
|
|||||||
|
|
||||||
except ParseError as e:
|
except ParseError as e:
|
||||||
document_parser.cleanup()
|
document_parser.cleanup()
|
||||||
|
self.log(
|
||||||
|
"error",
|
||||||
|
f"Error while consuming document {self.filename}: {e}")
|
||||||
raise ConsumerError(e)
|
raise ConsumerError(e)
|
||||||
|
|
||||||
# Prepare the document classifier.
|
# Prepare the document classifier.
|
||||||
@ -194,6 +197,11 @@ class Consumer(LoggingMixin):
|
|||||||
self.log("debug", "Deleting file {}".format(self.path))
|
self.log("debug", "Deleting file {}".format(self.path))
|
||||||
os.unlink(self.path)
|
os.unlink(self.path)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
self.log(
|
||||||
|
"error",
|
||||||
|
f"The following error occured while consuming "
|
||||||
|
f"{self.filename}: {e}"
|
||||||
|
)
|
||||||
raise ConsumerError(e)
|
raise ConsumerError(e)
|
||||||
finally:
|
finally:
|
||||||
document_parser.cleanup()
|
document_parser.cleanup()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user