使用不同级别登录Python

时间:2014-03-31 07:21:20

标签: python python-2.7 logging

出于某种原因,我不能同时使这两者同时工作。只有第一个适用。有人知道为什么吗?

logging.basicConfig(filename='logs/debug2.log',level=logging.DEBUG)
logging.basicConfig(filename='logs/critical.log',level=logging.CRITICAL)

我不能为不同级别提供不同的日志文件吗?这是Python 2.7

谢谢!

1 个答案:

答案 0 :(得分:1)

看起来您只有一个记录器对象,并且您正在更改其输出文件和级别,需要创建两个记录器对象并单独配置它们。

helps的示例:

import logging
# set up logging to file - see previous section for more details
logging.basicConfig(level=logging.DEBUG,
                    format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s',
                    datefmt='%m-%d %H:%M',
                    filename='/temp/myapp.log',
                    filemode='w')
# define a Handler which writes INFO messages or higher to the sys.stderr
console = logging.StreamHandler()
console.setLevel(logging.INFO)
# set a format which is simpler for console use
formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
# tell the handler to use this format
console.setFormatter(formatter)
# add the handler to the root logger
logging.getLogger('').addHandler(console)

# Now, we can log to the root logger, or any other logger. First the root...
logging.info('Jackdaws love my big sphinx of quartz.')

# Now, define a couple of other loggers which might represent areas in your
# application:

logger1 = logging.getLogger('myapp.area1')
logger2 = logging.getLogger('myapp.area2')

logger1.debug('Quick zephyrs blow, vexing daft Jim.')
logger1.info('How quickly daft jumping zebras vex.')
logger2.warning('Jail zesty vixen who grabbed pay from quack.')
logger2.error('The five boxing wizards jump quickly.')