logging配置如下:
logging.basicConfig(level=logging.DEBUG,\
format="%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s",\
datefmt="%a, %d %b %Y %H:%M:%S",\
filename="i2_insert_equipments.log",\
filemode="w")
但当在代码中使用logging.info的时候,目录下无日志文件生成。但当在控制台中运行的时候,是可以正常运行的,有知道这种现象如何解决的么? 望告知一下,谢谢。
你不會用,我給你一個例子
filename 的問題吧,你指定個絕對路徑,然後再試試,filemode="w"你這樣的話,每次都會產生一個新文件,
在互動式命令列下的環境是不同的,特別是對於某些涉及到文件和系統的操作,比如你可以試試在交互式命令行下新建進程.