为什么创建Python日志的代码不起作用?

时间:2016-07-15 12:23:57

标签: python logging

我试图让Python日志记录模块起作用:

代码:

import logging
import os

LOG_FILENAME = os.path.join(r'D:\MPhil\Model_Building\Models\Exercises\MCMC\MCMC_in_python\AtoB','CopasiMC.log')
logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG,filemode='w')
logging.debug('This message should go to the log file')

没有做任何事情。我的目标是在if __name__=='__main__:'块中使用此代码,然后在编写一组python类时使用此日志记录代码进度。任何人都可以告诉我为什么这不起作用。

0 个答案:

没有答案