我正在尝试将记录添加到我的脚本中,然后按python logging tutorial
示例代码
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')
但我在脚本所在的目录中找不到example.log
文件。当我调用os.getcwd()
时,它返回C:\\users\\eda
。也没有日志。