更改日志模式

时间:2014-12-25 22:28:20

标签: python

我已设置日志记录。但是,它只打印INFO及以上的内容。如何修改此内容以打印DEBUG及以上?

以下是我目前的代码:

import logging
log = logging.getLogger('avails')
log.debug('Does not show in print to console')
log.info('Show in print to console')

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

在"导入日志记录"之后,添加:

logging.basicConfig(level=logging.DEBUG)

还有很多其他方法,但这可能是最简单的方法。