日志未写入文件

时间:2018-07-16 14:33:34

标签: python linux python-3.x logging

我正在使用here中的以下示例,以及来自Gnu / Linux上虚拟环境的Python 3.6.5:

import logging
logging.basicConfig(filename='example.log',level=logging.DEBUG)
logging.debug('This message should go to the log file')
logging.info('So should this')
logging.warning('And this, too')

我仅在标准输出中收到此消息:

WARNING:root:And this, too

未生成任何输出文件。

我注意到它在Python 2.7.15中可以正常工作。

有什么想法吗?

0 个答案:

没有答案