Cố gắng sử dụng tệp cấu hình ghi nhật ký để triển khai TimedRotatinigFileHandler
.Python 2.4.3: ConfigParser.NoSectionError: Không có phần: 'formatters'
Chỉ cần không lấy tệp cấu hình vì một số lý do.
Bất kỳ đề xuất nào được đánh giá cao.
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'
Cảm ơn
Cảm ơn Adam! Điều đó là vậy đó. – user981163
Sửa lỗi là gì? – ProNeticas