python-技术篇-打印详细报错日志,获取报错信息位置行数

我们常用except Exception as e捕获异常 e,但往往不能达到我们想要的效果,那就是知道具体哪行代码出现问题了。我们通过 traceback.format_exc() 就能把详细的报错内容打印出来了。

# 日志模块
import logging
import traceback

# 引入日志
logging.basicConfig(filename='log_record.txt', level=logging.DEBUG, filemode='w', format='【%(asctime)s】 【%(levelname)s】 >>>  %(message)s', datefmt = '%Y-%m-%d %H:%M')

try:
	...   # 主要代码
except Exception as e:
    logging.error("主程序抛错:")
    logging.error(e)
    logging.error("\n" + traceback.format_exc())

效果图如下:
在这里插入图片描述
喜欢的点个赞❤吧!

posted on 2019-11-20 15:32  小蓝枣  阅读(178)  评论(0编辑  收藏  举报