最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

Python中捕捉详细异常信息的代码示例

来源:动视网 责编:小采 时间:2020-11-27 14:38:07
文档

Python中捕捉详细异常信息的代码示例

Python中捕捉详细异常信息的代码示例:大家在开发的过程中可能时常碰到一个需求,需要把Python的异常信息输出到日志文件中。 网上的办法都不太实用,下面介绍一种实用的,从Python 2.7源码中扣出来的。 废话不说 直接上代码,代码不多,注释比较多而已。 import sys, traceback t
推荐度:
导读Python中捕捉详细异常信息的代码示例:大家在开发的过程中可能时常碰到一个需求,需要把Python的异常信息输出到日志文件中。 网上的办法都不太实用,下面介绍一种实用的,从Python 2.7源码中扣出来的。 废话不说 直接上代码,代码不多,注释比较多而已。 import sys, traceback t


大家在开发的过程中可能时常碰到一个需求,需要把Python的异常信息输出到日志文件中。
网上的办法都不太实用,下面介绍一种实用的,从Python 2.7源码中扣出来的。
废话不说 直接上代码,代码不多,注释比较多而已。

import sys, traceback

traceback_template = '''Traceback (most recent call last):
 File "%(filename)s", line %(lineno)s, in %(name)s
%(type)s: %(message)s
''' # Skipping the "actual line" item

# Also note: we don't walk all the way through the frame stack in this example
# see hg.python.org/cpython/file/8dffb76faacc/Lib/traceback.py#l280
# (Imagine if the 1/0, below, were replaced by a call to test() which did 1/0.)

try:
 1/0
except:
 # http://docs.python.org/2/library/sys.html#sys.exc_info
 exc_type, exc_value, exc_traceback = sys.exc_info() # most recent (if any) by default

 '''
 Reason this _can_ be bad: If an (unhandled) exception happens AFTER this,
 or if we do not delete the labels on (not much) older versions of Py, the
 reference we created can linger.

 traceback.format_exc/print_exc do this very thing, BUT note this creates a
 temp scope within the function.
 '''

 traceback_details = {
 'filename': exc_traceback.tb_frame.f_code.co_filename,
 'lineno' : exc_traceback.tb_lineno,
 'name' : exc_traceback.tb_frame.f_code.co_name,
 'type' : exc_type.__name__,
 'message' : exc_value.message, # or see traceback._some_str()
 }

 del(exc_type, exc_value, exc_traceback) # So we don't leave our local labels/objects dangling
 # This still isn't "completely safe", though!
 # "Best (recommended) practice: replace all exc_type, exc_value, exc_traceback
 # with sys.exc_info()[0], sys.exc_info()[1], sys.exc_info()[2]


 ## 修改这里就可以把traceback打到任意地方,或者存储到文件中了
 print traceback_template % traceback_details

文档

Python中捕捉详细异常信息的代码示例

Python中捕捉详细异常信息的代码示例:大家在开发的过程中可能时常碰到一个需求,需要把Python的异常信息输出到日志文件中。 网上的办法都不太实用,下面介绍一种实用的,从Python 2.7源码中扣出来的。 废话不说 直接上代码,代码不多,注释比较多而已。 import sys, traceback t
推荐度:
标签: 信息 代码 异常
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top