将不同级别的logging 日志信息写入不同文件

1、编写python测试脚本

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

logging.config.fileConfig("logger.conf")

def logerror():
    logger = logging.getLogger("errorLogger")
    logger.error("There is a error in this file",exc_info=1)

def logdebug():
    logger = logging.getLogger("debugLogger")
    logger.debug("There is a debug in this file")

logdebug()

def testfun():
    print "test"

try:
    testfun(1)
except TypeError,e:
    logerror()

2、编写logging配置文档,将一般调试日志文件写入myapp.debug文件,将脚本运行过程中出错信息写入myapp.err文件。

[loggers]
keys=root,errorLogger,debugLogger

[logger_root]
level=DEBUG
handlers=errorHand,debugHand

[logger_errorLogger]
handlers=errorHand
qualname=errorLogger
propagate=0

[logger_debugLogger]
handlers=debugHand
qualname=debugLogger
propagate=0

###############################################
[handlers]
keys=errorHand,debugHand

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

[handler_debugHand]
class=handlers.RotatingFileHandler
level=DEBUG
formatter=form01
args=('myapp.debug', '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


3、执行python测试脚本,查看日志文件信息

[root@localhost tmp]# python mytest.py 
[root@localhost tmp]# cat myapp.debug 
2016-21-21 07:31:29 mytest.py[line:13] DEBUG There is a debug in this file
[root@localhost tmp]# cat myapp.err 
2016-21-21 07:31:29 mytest.py[line:9] ERROR There is a error in this file
Traceback (most recent call last):
  File "mytest.py", line 21, in <module>
    testfun(1)
TypeError: testfun() takes no arguments (1 given)



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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值