Python 3.4.2 日志记录不显示时间戳
Python 3.4.2 logging not displaying time stamp
我有一个 Python pgm,我正在尝试向其中添加日志记录。它正在记录,但没有为每个条目添加时间戳。我研究过它,阅读了文档等,它看起来是正确地写给我的,但它没有给我时间戳。这里有什么不正确的地方?
lfname = "TestAPIlog.log"
logging.basicConfig(filename=lfname, format='%(asctime)s %(message)s',
filemode='w', level=logging.WARNING )
logging.info('Started')
上面生成的日志的顶部是这样的:
INFO:root:Started
INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): api.uber.com
DEBUG:requests.packages.urllib3.connectionpool:"GET /v1/estimates/price?end_latitude=39.762239&start_latitude=39.753385&server_token=MY_TOKEN_HERE&start_longitude=-104.998454&end_longitude=-105.013322 HTTP/1.1" 200 None
INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): api.uber.com
DEBUG:requests.packages.urllib3.connectionpool:"GET /v1/estimates/price?
谢谢,
砍
看起来好像在您的代码运行时已经调用了 basicConfig()
。如文档所述,如果日志记录配置了任何处理程序,basicConfig()
将不执行任何操作。它只是作为一种一次性的、简单的配置方法。在此处检查您没有 post 的代码的其他部分。
我有一个 Python pgm,我正在尝试向其中添加日志记录。它正在记录,但没有为每个条目添加时间戳。我研究过它,阅读了文档等,它看起来是正确地写给我的,但它没有给我时间戳。这里有什么不正确的地方?
lfname = "TestAPIlog.log"
logging.basicConfig(filename=lfname, format='%(asctime)s %(message)s',
filemode='w', level=logging.WARNING )
logging.info('Started')
上面生成的日志的顶部是这样的:
INFO:root:Started
INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): api.uber.com
DEBUG:requests.packages.urllib3.connectionpool:"GET /v1/estimates/price?end_latitude=39.762239&start_latitude=39.753385&server_token=MY_TOKEN_HERE&start_longitude=-104.998454&end_longitude=-105.013322 HTTP/1.1" 200 None
INFO:requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): api.uber.com
DEBUG:requests.packages.urllib3.connectionpool:"GET /v1/estimates/price?
谢谢,
砍
看起来好像在您的代码运行时已经调用了 basicConfig()
。如文档所述,如果日志记录配置了任何处理程序,basicConfig()
将不执行任何操作。它只是作为一种一次性的、简单的配置方法。在此处检查您没有 post 的代码的其他部分。