gpt4 book ai didi

python 3 : How to log warnings and errors to log file?

转载 作者:行者123 更新时间:2023-12-05 08:42:27 27 4
gpt4 key购买 nike

假设我有一个永远运行的 While 循环(它进行系统监控)。

它有三个条件,

While True:

if something1
Everything is OK!
if something2
Warning
if something3
Error

第一,我什么都不想要。第二,我想向日志文件添加警告。对于第三个,相同 - 除了它是一个错误。

因为它们在一个 while 循环中,我仍然可以只向 something2 和 something3 添加一个记录器吗?我应该从下面开始吗?

导入日志
记录器 = logging.getLogger()

但我如何向每个相应的 if 语句添加警告和错误,以便它写入同一个日志文件?

最佳答案

尝试这样做

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')

关于 python 3 : How to log warnings and errors to log file?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41764345/

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