我有一点问题,我使用日志库,当脚本运行时没有日志剂量没有写入文件。程序完成后,所有日志突然出现在文件中。如何实时将日志放入文件?抱歉我的英文。
这是我的示例代码:
import logging, time
logging.basicConfig(filename='C:/testlog.log', level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
logging.debug('This is a log message.')
x = 1
while x < 6:
time.sleep(1)
logging.error('Log test: ' + str(x))
x=x+1