Python使用回溯记录异常,但不显示消息两次

时间:2016-06-03 12:42:57

标签: python exception logging exception-handling output

如果我运行以下代码:

import logging
logger = logging.getLogger('creator')
try:
    # some stuff
except Exception as exception:
    logger.exception(exception)

我在屏幕上看到以下输出:

creator     : ERROR    division by zero
Traceback (most recent call last):
  File "/graph_creator.py", line 21, in run
    1/0
ZeroDivisionError: division by zero

有没有办法获得这样的输出?

creator     : ERROR    ZeroDivisionError: division by zero
Traceback (most recent call last):
  File "/graph_creator.py", line 21, in run
    1/0

当然,我可以得到这个(但我不喜欢):

creator     : ERROR    Сaught exception (and etc...)
Traceback (most recent call last):
  File "/graph_creator.py", line 21, in run
    1/0
ZeroDivisionError: division by zero

1 个答案:

答案 0 :(得分:0)

如果你这样叫exception

logger.exception('%s: %s', exception.__class__.__name__, exception)

然后你可以在初始行中获得异常类名。

如果您需要更精确的更改,可以使用自定义Formatter子类,它可以根据您的需要进行格式化。这将需要覆盖format_exception以更改回溯的格式。