记录 Python 异常的最佳方法是什么?
我们导入日志模块,然后使用 logging.exception 方法创建 Python 异常日志。
示例
import logging try: print 'toy' + 6 except Exception as e: logging.exception("This is an exception log")
输出
我们得到以下输出
ERROR:root:This is an exception log Traceback (most recent call last): File "C:/Users/TutorialsPoint1/PycharmProjects/TProg/Exception handling/loggingerror1.py", line 3, in <module> print 'toy' + 6 TypeError: cannot concatenate 'str' and 'int' objects
需要注意的是,在 Python 3 中,我们必须在 except 部分内调用 logging.exception 方法。如果在这个部分的任何其他地方调用该方法,则可能会根据 Python 文档发出警报并收到一个奇怪的异常。
广告