Fix broken exception logging (#173)

This commit is contained in:
Pierre Ståhl
2020-11-20 10:40:35 +01:00
committed by GitHub
parent 27af622405
commit f376d8584a

View File

@@ -137,7 +137,7 @@ class ContextualLogger:
def exception(self, msg, *args):
"""Exception level log."""
return self._logger.log(logging.EXCEPTION, msg, *args)
return self._logger.exception(msg, *args)
def pack_message(msg):