I have the following code, copied from the Python manual:
import logging LOG_FILENAME = 'example.log' logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG) logging.debug('This message should go to the log file')
解决办法:
你的文件名字起了logging。
I have the following code, copied from the Python manual:
import logging LOG_FILENAME = 'example.log' logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG) logging.debug('This message should go to the log file')
解决办法:
你的文件名字起了logging。