Python - 将日志写入文件

时间:2017-07-27 15:48:48

标签: python logging

我目前有控制台的日志设置。

我使用:

调用我的配置
import logging
import logging.config

logging.config.fileConfig('logging.conf')
logger = logging.getLogger('osPatch')

我的配置是::

[loggers]
keys=root,osPatch

[handlers]
keys=consoleHandler

[formatters]
keys=osPatch

[logger_root]
level=DEBUG
handlers=consoleHandler

[logger_osPatch]
level=DEBUG
handlers=consoleHandler
qualname=osPatch
propagate=0

[handler_consoleHandler]
class=StreamHandler
level=DEBUG
formatter=osPatch
args=(sys.stdout,)

[formatter_osPatch]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
datefmt=

这使我的控制台级日志记录完全正常。

现在我希望将相同的日志写入文件。

我想要做的是编辑我的配置文件并使用fileHandler

所以我将配置文件编辑为:

[loggers]
keys=root,osPatch

[handlers]
keys=consoleHandler,FileHandler

[handler_FileHandler]
filename=example.log
level=DEBUG
formatter=osPatch

这给了我一个错误:

Traceback (most recent call last):
  File "apply_errata.py", line 1, in <module>
    import satellite_utils
  File "/root/config-3.1.25/automated-os-patching/satellite_utils.py", line 3, in <module>
    import system_utils
  File "/root/config-3.1.25/automated-os-patching/system_utils.py", line 4, in <module>
    import processing_utils
  File "/root/config-3.1.25/automated-os-patching/processing_utils.py", line 7, in <module>
    logging.config.fileConfig('logging.conf')
  File "/usr/lib64/python3.4/logging/config.py", line 85, in fileConfig
    _install_loggers(cp, handlers, disable_existing_loggers)
  File "/usr/lib64/python3.4/logging/config.py", line 253, in _install_loggers
    logger.addHandler(handlers[hand])
KeyError: 'FileHandler'

我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

不确定您的完整配置文件的外观,但根据我的经验,回溯表明处理程序密钥未在处理程序部分中正确声明。

作为参考,这是我认为您打算创建的配置文件的经过验证的版本:

[loggers]
keys=root,osPatch

[handlers]
keys=consoleHandler,FileHandler

[formatters]
keys=osPatch

[logger_root]
level=DEBUG
handlers=consoleHandler,FileHandler

[logger_osPatch]
level=DEBUG
handlers=consoleHandler,FileHandler
qualname=osPatch
propagate=0

[handler_consoleHandler]
class=StreamHandler
level=DEBUG
formatter=osPatch
args=(sys.stdout,)

[handler_FileHandler]
class=FileHandler
level=DEBUG
formatter=osPatch
args=('example.log',)

[formatter_osPatch]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
datefmt=