配置文件中记录FileHandler的罕见行为

时间:2019-01-02 21:38:28

标签: python python-3.x logging python-logging

我有一个日志配置文件:

logger_config.yml

version: 1
formatters:
  simple:
    format: '%(asctime)s - %(levelname)s - %(message)s'
handlers:
  console:
    class: logging.StreamHandler
    level: DEBUG
    formatter: simple
    stream: ext://sys.stdout
  file:
    class: logging.FileHandler
    level: DEBUG
    formatter: simple
    filename: train.log
loggers:
  trainLogger:
    level: DEBUG
    handlers: [console]
    propagate: 1
root:
  level: DEBUG
  handlers: [console]
  propagate: 1

还有一个简单的脚本:

test.py

import logging
import logging.config
import yaml


with open('logging_config.yml', 'rt') as f:
    config = yaml.safe_load(f.read())

logging.config.dictConfig(config)

# create logger
logger = logging.getLogger(__name__)

# 'application' code
logger.debug('debug message')
logger.info('info message')
logger.warn('warn message')
logger.error('error message')
logger.critical('critical message')

当我运行test.py时,假设脚本将仅登录控制台,因为handler的{​​{1}}为root,但是也会创建一个空的train.log。为什么要追加?

1 个答案:

答案 0 :(得分:0)

即使您只是使用 fileHandler,但在加载记录器实例时仍在创建consoleHandler。如果您仅在shell中运行以下命令:

import logging
fh = logging.FileHandler("mylogger.txt")
quit()

您将看到“ mylogger.txt”已创建。这是因为在后台,处理程序在__init__而不是在使用时创建文件。最好采用这种方式进行设计,因为您可能会使用多次(可能同时)使用该处理程序,并且您不想每次都检查文件是否存在,因为那样会很慢您可以在尝试创建文件时引入竞争条件