gpt4 book ai didi

python - 日志模块在文件的同一行上打印日志

转载 作者:太空宇宙 更新时间:2023-11-03 18:41:28 25 4
gpt4 key购买 nike

我一定在这里遗漏了一些东西,因为日志打印在同一行上。我认为日志记录模块会自动创建新行?

temp = int(2489)
logging.basicConfig( filename='temp.log',
filemode='a',
format='%(asctime)s\n:%(message)s',
datefmt = '%s',
level=logging.DEBUG )

logging.info(temp)
time.sleep(1)

基本示例也会发生同样的情况:

logging.basicConfig(filename="example.log")
logging.debug("This message should go to the log file")
logging.info("So should this")
logging.warning("And this, too")

最佳答案

当我意识到问题与 python 无关时,我正要放弃并以老式方式写入文件。

换行符在那里,但记事本根本没有显示它们! Sublime Text 2 很好地展示了它们。因此,解决方案是不要使用记事本,因为它根本不适用于非 Windows 创建的文本文件。

关于python - 日志模块在文件的同一行上打印日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20413042/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com