使用配置文件的Python 3.2日志记录在Raspbian上导致KeyError:’formatters’
作者:互联网
我为我的Python应用程序配备了日志功能,并且在具有Python 3.4的Windows系统上可以完美地运行.但是,当我使用Raspbian和Python 3.2在Raspberry Pi上部署应用程序时,出现以下错误:
Traceback (most recent call last):
File "aurora/aurora_websocket.py", line 265, in <module>
logging.config.fileConfig('logging.conf')
File "/usr/lib/python3.2/logging/config.py", line 70, in fileConfig
formatters = _create_formatters(cp)
File "/usr/lib/python3.2/logging/config.py", line 106, in _create_formatters
flist = cp["formatters"]["keys"]
File "/usr/lib/python3.2/configparser.py", line 941, in __getitem__
raise KeyError(key)
KeyError: 'formatters'
logging.conf文件(在没有BOM的情况下以UTF-8编码):
[loggers]
keys=root,simpleExample
[handlers]
keys=screen
[formatters]
keys=simple,complex
[logger_root]
level=NOTSET
handlers=screen
[logger_simpleExample]
level=DEBUG
handlers=screen
qualname=simpleExample
propagate=0
[handler_screen]
class=StreamHandler
level=DEBUG
formatter=complex
args=(sys.stdout,)
[formatter_simple]
format=%(asctime)s - %(levelname)s - %(message)s
datefmt=
[formatter_complex]
format=%(asctime)s - %(levelname)-8s - <%(module)s : %(lineno)d> - %(message)s
datefmt=
日志记录配置以简单的单行代码加载:
logging.config.fileConfig('logging.conf')
我不知所措,因为如上所述,我的应用程序在Windows上可以正常运行,但在RPi上却无法运行.
解决方法:
好吧,这并没有持续很长时间…事实证明,我已经从另一个工作目录在RPi上运行我的应用程序.因此,相对于不同的工作目录,logging.conf文件的文件路径被错误地解释.不幸的是,日志记录库试图继续处理不存在的文件,并且在这种情况下不会抛出有用的异常.
标签:python,logging,raspberry-pi,keyerror,python-3-2 来源: https://codeday.me/bug/20191013/1911374.html