本文介绍了Python日志记录:如何设置格林尼治标准时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以以及如何将日志记录时区设置为GMT?
Is it possible and how to set the logging timezone to GMT?
(即格式为%(asctime)s
的参数)
推荐答案
logging.Formatter.converter = time.gmtime
(在 logging.Formatter.formatTime
)
(documented in the docstring of logging.Formatter.formatTime
)
这篇关于Python日志记录:如何设置格林尼治标准时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!