Pythonrequests
库在其日志记录行为方面似乎有一些相当奇怪的怪癖。使用最新的 Python 2.7.8,我有以下代码:
import requests
import logging
logging.basicConfig(
filename='mylog.txt',
format='%(asctime)-19.19s|%(task)-36s|%(levelname)s:%(name)s: %(message)s',
level=eval('logging.%s' % 'DEBUG'))
logger = logging.getLogger(__name__)
logger.info('myprogram starting up...', extra={'task': ''}) # so far so good
...
(ommited code)
...
payload = {'id': 'abc', 'status': 'ok'}
# At this point the program continues but throws an exception.
requests.get('http://localhost:9100/notify', params=payload)
print 'Task is complete! NotifyURL was hit! - Exiting'
我的程序似乎正常退出,但是在它创建的日志文件(mylog.txt)中,我总是发现以下异常:
KeyError: 'task'
Logged from file connectionpool.py, line 362
如果我删除它:
requests.get('http://localhost:9100/notify', params=payload)
那么异常就消失了。
我到底做错了什么,我该如何解决这个问题?我正在使用请求 v2.4.3。