Python 记录器 - 将 STDOUT 重定向到日志文件以及任何调试消息

Posted

技术标签:

【中文标题】Python 记录器 - 将 STDOUT 重定向到日志文件以及任何调试消息【英文标题】:Python logger - Redirecting STDOUT to logfile as well as any debug messages 【发布时间】:2021-05-05 16:02:03 【问题描述】:

我正在尝试在 Python 中使用日志记录模块,因此,当我运行我的程序时,我最终会得到一个日志文件 debug.log,其中包含:

    每条日志消息(logging.DEBUG、logging.WARNING 等) 每次我的代码向 STDOUT 打印一些内容时

当我运行程序时,我只希望调试消息出现在日志文件中,而不是打印在终端上。

基于this answer,这是我的示例代码test.py

import logging
import sys

root = logging.getLogger()
root.setLevel(logging.DEBUG)

fh = logging.FileHandler('debug.log')
fh.setLevel(logging.DEBUG)

sh = logging.StreamHandler(sys.stdout)
sh.setLevel(logging.DEBUG)

formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
sh.setFormatter(formatter)
fh.setFormatter(formatter)

root.addHandler(sh)
root.addHandler(fh)

x = 4
y = 5
logging.debug("X: %s", x)
logging.debug("Y: %s", y)
print("x is", x)
print("y is", y)
print("x * y =", x*y)
print("x^y =", x**y)

这就是我想要的 debug.log 的内容:

2021-02-01 12:10:48,263 - root - DEBUG - X: 4                            
2021-02-01 12:10:48,264 - root - DEBUG - Y: 5
x is 4
y is 5
x * y = 20
x^y = 1024

相反,debug.log 的内容只是前两行:

2021-02-01 12:10:48,263 - root - DEBUG - X: 4                            
2021-02-01 12:10:48,264 - root - DEBUG - Y: 5

当我运行test.py 时,我得到了这个输出:

2021-02-01 12:17:04,201 - root - DEBUG - X: 4
2021-02-01 12:17:04,201 - root - DEBUG - Y: 5
x is 4
y is 5
x * y = 20
x^y = 1024

所以我实际上得到了与我想要的相反的结果:日志文件排除了我希望包含它们的 STDOUT 打印,而程序输出包含了我希望排除它们的调试消息。

我该如何解决这个问题,以便运行test.py 只输出print 语句中的行,而生成的debug.log 文件包含调试日志和打印行?

【问题讨论】:

如果您真的想使用print() 并将所有stdout 输出记录到文件中,也许this 可以提供帮助。但是,我只使用 logging 记录器而不是 print(),它带有一个特殊的流处理程序,可以打印到 stdout,而无需任何其他格式。 还有很多类似的问题,例如***.com/q/19425736. 【参考方案1】:

好吧,我可以让它工作,但我还不知道是否会因此产生任何影响。也许其他人能够指出任何潜在的缺陷,例如多线程。

您可以将sys.stdout 设置为您喜欢的任何类似文件的对象。这将包括您的logging.FileHandler() 正在写入的文件。试试这个:

fh = logging.FileHandler('debug.log')
fh.setLevel(logging.DEBUG)

old_stdout = sys.stdout    # in case you want to restore later
sys.stdout = fh.stream     # the file to which fh writes

您可以删除与标准输出挂钩的处理sh 的代码。

【讨论】:

看起来像这里建议的:***.com/a/31688396 @djvg:是吗?事先没有查。也许应该将问题标记为重复。【参考方案2】:

如果您真的希望 all 输出到 stdout 最终出现在日志文件中,请参阅例如mhawke's answer,以及链接的问题和答案。

但是,如果您真的只是对自己的 print() 调用的输出感兴趣,那么我将使用自定义日志记录级别将所有这些替换为 Logger.log() 调用。这使您可以对所发生的事情进行细粒度的控制。

下面,我定义了一个自定义日志级别,其值高于logging.CRITICAL,因此我们的控制台输出总是被打印出来,即使记录器的级别是CRITICAL。见docs。

这是一个基于 OP 示例的最小实现:

import sys
import logging

# define a custom log level with a value higher than CRITICAL
CUSTOM_LEVEL = 100

# dedicated formatter that just prints the unformatted message
# (actually this is the default behavior, but we make it explicit here)
# See docs: https://docs.python.org/3/library/logging.html#logging.Formatter
console_formatter = logging.Formatter('%(message)s')

# your basic console stream handler
console_handler = logging.StreamHandler(sys.stdout)
console_handler.setFormatter(console_formatter)

# only use this handler for our custom level messages (highest level)
console_handler.setLevel(CUSTOM_LEVEL)

# your basic file formatter and file handler
file_formatter = logging.Formatter(
    '%(asctime)s - %(name)s - %(levelname)s - %(message)s')
file_handler = logging.FileHandler('debug.log')
file_handler.setFormatter(file_formatter)
file_handler.setLevel(logging.DEBUG)

# use a module logger instead of the root logger
logger = logging.getLogger(__name__)

# add the handlers
logger.addHandler(console_handler)
logger.addHandler(file_handler)

# include messages with level DEBUG and higher
logger.setLevel(logging.DEBUG)

# NOW, instead of using print(), we use logger.log() with our CUSTOM_LEVEL
x = 4
y = 5
logger.debug(f'X: x')
logger.debug(f'Y: y')
logger.log(CUSTOM_LEVEL, f'x is x')
logger.log(CUSTOM_LEVEL, f'y is y')
logger.log(CUSTOM_LEVEL, f'x * y = x*y')
logger.log(CUSTOM_LEVEL, f'x^y = x**y')

【讨论】:

【参考方案3】:

我认为您不希望所有 stdout 输出都进入日志文件。

您可以将控制台处理程序的日志记录级别设置为logging.INFO,将文件处理程序的日志记录级别设置为logging.DEBUG。然后将您的print 语句替换为对logging.info 的调用。这样只会将信息消息及以上信息输出到控制台。

类似这样的:

import logging
import sys

logger = logging.getLogger(__name__)

console_handler = logging.StreamHandler(sys.stdout)
file_handler = logging.FileHandler("debug.log")
console_handler.setLevel(logging.INFO)
file_handler.setLevel(logging.DEBUG)

console_formatter = logging.Formatter('%(message)s')
file_formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')

console_handler.setFormatter(console_formatter)
file_handler.setFormatter(file_formatter)

logger.addHandler(console_handler)
logger.addHandler(file_handler)
logger.setLevel(logging.DEBUG) #set root logging level to DEBUG

if __name__ == "__main__":
    x = 4
    y = 5
    logger.debug("X: %s", x)
    logger.debug("Y: %s", y)
    logger.info("x is ".format(x))
    logger.info("y is ".format(y))
    logger.info("x * y = ".format(x * y))
    logger.info("x^y = ".format(x ** y))

Demo

【讨论】:

请注意StreamHandler() 默认使用sys.stderr,而不是sys.stdout (docs)。 @djvg 感谢您指出这一点。已更正。

以上是关于Python 记录器 - 将 STDOUT 重定向到日志文件以及任何调试消息的主要内容,如果未能解决你的问题,请参考以下文章

如何将标准输出和标准错误重定向到 Python 中的记录器

如何将“stdout”重定向到标签小部件?

有啥方法可以将 sd_journal_send 重定向到 stdout 或 stderr?

Python 标准输出 sys.stdout 重定向

将Loggers`消息重定向到sys.stdout和sys.stderr

我可以将标准输出重定向到某种字符串缓冲区吗?