23

尝试使用日志记录配置文件来实现TimedRotatinigFileHandler.

只是出于某种原因不会使用配置文件。

任何建议表示赞赏。


x.py:

import logging
import logging.config
import logging.handlers

logging.config.fileConfig("x.ini")

MyLog = logging.getLogger('x')

MyLog.debug('Starting') 

x.ini:

[loggers]
keys=root

[logger_root]
level=NOTSET
handlers=trfhand

[handlers]
keys=trfhand

[handler_trfhand]
class=handlers.TimedRotatingFileHandler
when=M
interval=1
backupCount=11
formatter=generic
level=DEBUG
args=('/var/log/x.log',)

[formatters]
keys=generic

[formatter_generic]
class=logging.Formatter
format=%(asctime)s %(levelname)s %(message)s
datefmt=

Traceback (most recent call last):
  File "x.py", line 5, in ?
    logging.config.fileConfig("x.ini")
  File "/usr/lib/python2.4/logging/config.py", line 76, in fileConfig
    flist = cp.get("formatters", "keys")
  File "/usr/lib/python2.4/ConfigParser.py", line 511, in get
    raise NoSectionError(section)
ConfigParser.NoSectionError: No section: 'formatters'

谢谢

4

2 回答 2

74

错误消息严格准确但具有误导性。

缺少“格式化程序”部分的原因是日志记录模块找不到您传递给logging.config.fileConfig.

尝试使用绝对文件路径。

于 2011-10-27T22:21:51.090 回答
5

是的,@ekhumoro 是对的。似乎logging需要一条绝对路径。Python 团队应该将此错误消息更改为更易读的内容;它只是看不到我的文件,而不是因为配置文件本身是错误的。

我设法通过BASE_DIR在配置文件中定义一个变量并将其作为路径的前缀导入来解决这个问题,就像 Django 所做的那样。并且,如果未创建日志文件的父目录,请记住创建它们。

我在以下位置定义路径和记录器config.py

import os
BASE_DIR=os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

import logging
import logging.config
logging.config.fileConfig(os.path.join(BASE_DIR, 'utils', 'logger.conf')) # the `logger.conf` locates under 'myproject/utils/'
logger = logging.getLogger("mylog") # 'mylog' should exist in `logger.conf` in the logger part

在其他模块中:

from config import logger
...

logger.info("Your loggings modules should work now!! - WesternGun")
于 2018-03-25T21:31:12.447 回答