将python脚本运行过程中的报错信息写入日志文件

1、编写logger.conf文件

[loggers]
keys=root,example01

[logger_root]
level=WARNING
handlers=hand01

[logger_example01]
handlers=hand01
qualname=example01
propagate=0


###############################################
[handlers]
keys=hand01

[handler_hand01]
class=handlers.RotatingFileHandler
level=INFO
formatter=form01
args=('myapp.err', 'a', 10*1024*1024, 1)


###############################################
[formatters]
keys=form01

[formatter_form01]
format=%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s
datefmt=%Y-%e-%d %H:%M:%S


2、编写测试文件mytest.py

#!/usr/bin/env python
import logging
import logging.config

logging.config.fileConfig("logger.conf")
logger = logging.getLogger("example01")

def testfun():
    print "test"

try:
    testfun(1)
except TypeError,e:
    logging.error("There is a error in this file",exc_info=1)

3、执行测试文件

[root@localhost tmp]# python mytest.py 

4、查看myapp.err文件的内容

[root@localhost tmp]# cat myapp.err 
2016-14-14 22:52:12 mytest.py[line:14] ERROR There is a error in this file
Traceback (most recent call last):
  File "mytest.py", line 12, in <module>
    testfun(1)
TypeError: testfun() takes no arguments (1 given)
可知脚本运行过程中出现的异常信息已被写入至myapp.err文件中。

  • 0
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值