本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

PythonLogger无法输出debug和info级别日志信息是什么原因?

网络教程 app 1℃

PythonLogger无法输出debug和info级别日志信息是什么原因

logger无法输出指定级别日志信息的原因

原本设置了logger的filter,预期仅输出包含特定关键字的日志信息。然而,实际输出结果并未包含debug和info级别的日志信息。

解决方案:

问题并非filter本身,而是使用方法存在问题。解决方案如下:

import loggingcustomFilter = CustomFilter() # 自定义Filterlogger: logging.Logger = logging.getLogger() # 获取Logger# 使用StreamHandler将日志输出到控制台handler = logging.StreamHandler()logger.addHandler(handler)logger.setLevel(logging.DEBUG) # 设置Logger等级为DEBUGlogger.addFilter(customFilter) # 添加Filterlogger.debug(‘This is a debug message with custom keyword’)logger.info(‘This is an info message with custom keyword’)logger.warning(‘This is a warning message with custom keyword’)logger.error(‘This is an error message with custom keyword’)logger.critical(‘This is a critical message with custom keyword’)

原因:

当使用filter过滤日志信息时,还必须使用handler将日志输出到特定目标,例如文件或控制台。在原始代码中,没有使用handler,因此无法正确输出过滤后的日志信息。

以上就是Python Logger无法输出debug和info级别日志信息是什么原因?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » PythonLogger无法输出debug和info级别日志信息是什么原因?

喜欢 (0)