欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python 记录错误日志

程序员文章站 2024-02-22 15:51:52
...
模块:traceback

异常:利用try  except 语句捕获异常

try:
        config_bcursor.execute(start_sql_log)
        config_bconn.commit()        
except Exception, e:
            #利用 traceback 读取到错误日志, 利用str() 函数将获取到的错误日志存入数据库中
            error_log = str(traceback.format_exc())
            config_bcursor.execute(sql_log, (error_log))
            config_bconn.commit()

# 获取到错误日志
traceback.format_exc()
#直接输出获取到的错误日志
traceback.print_exc()

转载于:https://my.oschina.net/myzyq/blog/790259