Skip to content

Commit

Permalink
properly call logging.exception
Browse files Browse the repository at this point in the history
  • Loading branch information
hpk42 committed Nov 20, 2023
1 parent e27ec22 commit 9061cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatmaild/src/chatmaild/doveauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def handle(self):
else:
logging.warn("request had no answer: %r", msg)
except Exception:
logging.exception()
logging.exception("Exception in the handler")
raise

try:
Expand Down

0 comments on commit 9061cbb

Please sign in to comment.