1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

journal_lock: No need for exc_info=True on logger.exception()

This commit is contained in:
Athanasius 2021-03-22 15:06:24 +00:00
parent bc33bf1b19
commit 732cfa1192

View File

@ -51,7 +51,7 @@ class JournalLock:
self.journal_dir_path = pathlib.Path(self.journal_dir)
except Exception:
logger.exception("Couldn't make pathlib.Path from journal_dir", exc_info=True)
logger.exception("Couldn't make pathlib.Path from journal_dir")
def obtain_lock(self) -> JournalLockResult:
"""