解决Python logging模块无法正常输出日志的问题

作者:sxhlinux 时间:2023-10-03 17:04:25 

废话少说,先上代码


File:logger.conf

[formatters]
keys=default

[formatter_default]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
class=logging.Formatter

[handlers]
keys=console, error_file

[handler_console]
class=logging.StreamHandler
formatter=default
args=tuple()

[handler_error_file]
class=logging.FileHandler
level=INFO
formatter=default
args=("logger.log", "a")

[loggers]
keys=root

[logger_root]
level=DEBUG
formatter=default
handlers=console,error_file

File:logger.py

#!/bin/env python

import logging
from logging.config import logging

class Test(object):
"""docstring for Test"""
def __init__(self):
logging.config.fileConfig("logger.conf")
self.logger = logging.getLogger(__name__)

def test_func(self):
self.logger.error('test_func function')

class Worker(object):
"""docstring for Worker"""
def __init__(self):
logging.config.fileConfig("logger.conf")
self.logger = logging.getLogger(__name__)

data_logger = logging.getLogger('data')
handler = logging.FileHandler('./data.log')
fmt = logging.Formatter('%(asctime)s|%(message)s')
handler.setFormatter(fmt)
data_logger.addHandler(handler)
data_logger.setLevel(logging.DEBUG)
self.data_logger = data_logger

def test_logger(self):
self.data_logger.error("test_logger function")
instance = Test()
self.data_logger.error("test_logger output")
instance.test_func()

def main():
worker = Worker()
worker.test_logger()

if __name__ == '__main__':
main()

问题一:测试过程中,只能打印出test_logger function一条语句

问题二:明明只在data_logger中打印出语句,但是logger的日志中也出现了相关的日志。

问题一解决方案:

利用python -m pdb logger.py 语句对脚本进行调试发现,在执行instance = Test()语句后,通过print '\n'.join(['%s:%s' % item for item in self.data_logger.__dict__.items()])调试语句看到data_logger的disable属性值由0变成了True,此时logger的对应属性也发生了相同的变化。这种变化导致了logger对象停止记录日志。

参考python logging模块的相关手册发现

“The fileConfig() function takes a default parameter, disable_existing_loggers, which defaults to True for reasons of backward compatibility. This may or may not be what you want, since it will cause any loggers existing before the fileConfig() call to be disabled unless they (or an ancestor) are explicitly named in the configuration.”

的说明,即调用fileconfig()函数会将之前存在的所有logger禁用。

在python 2.7版本该fileConfig()函数添加了一个参数,logging.config.fileConfig(fname, defaults=None, disable_existing_loggers=True),可以显式的将disable_existing_loggers设置为FALSE来避免将原有的logger禁用。

将上述代码中的Test类中的logging.config.fileConfig函数改成logging.config.fileConfig("./logger.conf", disable_existing_loggers=0)就可以解决问题。

不过该代码中由于位于同一程序内,可以直接用logging.getLogger(LOGGOR_NAME)函数引用同一个logger,不用再调用logging.config.fileConfig函数重新加载一遍了。

问题二解决方案:

logger对象有个属性propagate,如果这个属性为True,就会将要输出的信息推送给该logger的所有上级logger,这些上级logger所对应的handlers就会把接收到的信息打印到关联的日志中。logger.conf配置文件中配置了相关的root logger的属性,这个root logger就是默认的logger日志。

修改后的如下:


File:logger.conf

[formatters]
keys=default, data

[formatter_default]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
class=logging.Formatter

[formatter_data]
format=%(asctime)s|%(message)s
class=logging.Formatter

[handlers]
keys=console, error_file, data_file

[handler_console]
class=logging.StreamHandler
formatter=default
args=tuple()

[handler_error_file]
class=logging.FileHandler
level=INFO
formatter=default
args=("logger.log", "a")

[handler_data_file]
class=logging.FileHandler
level=INFO
formatter=data
args=("data_new.log", "a")

[loggers]
keys=root, data

[logger_root]
level=DEBUG
handlers=console,error_file

[logger_data]
level=DEBUG
handlers=data_file
qualname=data
propagate=0

File:logger.py

#!/bin/env python

import logging
from logging.config import logging

class Test(object):
"""docstring for Test"""
def __init__(self):
self.logger = logging.getLogger(__name__)

def test_func(self):
self.logger.error('test_func function')

class Worker(object):
"""docstring for Worker"""
def __init__(self):
logging.config.fileConfig("logger.conf")
self.logger = logging.getLogger(__name__)
self.data_logger = logging.getLogger('data')

def test_logger(self):
self.data_logger.error("test_logger function")
instance = Test()
self.data_logger.error("test_logger output")
instance.test_func()

def main():
worker = Worker()
worker.test_logger()

if __name__ == '__main__':
main()

来源:https://www.cnblogs.com/sxhlinux/p/6390523.html

标签:Python,logging,输出日志
0
投稿

猜你喜欢

  • Python绘制分类图的方法

    2021-08-10 04:09:13
  • Python图像增强imgaug详解

    2022-02-07 17:07:40
  • 全面详解JS正则中匹配技巧及示例

    2024-03-24 15:07:39
  • MySQL数据库innodb启动失败无法重启的解决方法

    2024-01-25 13:29:12
  • python定时检测无响应进程并重启的实例代码

    2023-11-29 11:00:39
  • 详解MySQL主键唯一键重复插入解决方法

    2024-01-20 16:41:22
  • python读取html中指定元素生成excle文件示例

    2021-04-08 19:51:11
  • asp下实现代码的“运行代码”“复制代码”“保存代码”功能源码

    2011-04-14 10:39:00
  • 十个Golang开发中应该避免的错误总结

    2024-04-25 15:05:14
  • Pygame Transform图像变形的实现示例

    2022-03-04 03:39:29
  • CentOS6.9 Python环境配置(python2.7、pip、virtualenv)

    2022-04-30 14:37:08
  • asp如何获知文件最后的修改日期和时间?

    2009-11-24 20:49:00
  • python中的装饰器该如何使用

    2021-01-17 20:40:45
  • java配置数据库连接池的方法步骤

    2024-01-17 21:00:32
  • python读取文件名称生成list的方法

    2021-12-21 02:40:34
  • MySQL 5.6 中 TIMESTAMP 的变化分析

    2024-01-22 04:30:14
  • ElementUI的this.$notify.close()调用不起作用的解决

    2024-05-09 09:53:16
  • python pygame实现五子棋小游戏

    2021-10-31 13:39:23
  • 详解Python如何优雅地解析命令行

    2021-02-16 01:53:59
  • python opencv实现影像拼接

    2023-10-24 10:54:04
  • asp之家 网络编程 m.aspxhome.com