如何在 Python 日志记录中设置 GMT/UTC 时间戳?

2022-01-16 00:00:00 python logging timezone utc

问题描述

是否可以以及如何将日志记录时区设置为 GMT?

Is it possible and how to set the logging timezone to GMT?

(即格式中的%(asctime)s参数)


解决方案

logging.Formatter.converter = time.gmtime

(记录在 logging.Formatter 的文档字符串中.formatTime)

相关文章