我正在使用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中可以正常工作。
有什么想法吗?