gpt4 book ai didi

python - 如何在更改 TIME_ZONE 设置时保持 UTC 时间记录?

转载 作者:太空宇宙 更新时间:2023-11-03 12:47:48 25 4
gpt4 key购买 nike

我在我的 django 项目的 settings.py 文件中设置了时区:

TIME_ZONE = '美国/东部'

现在我的日志包含美国/东部时间。

我想在我的日志中保留 UTC 时间。这可能吗?

最佳答案

Django 使用 Python 的日志工具,所以这里不应该有任何 Django 特有的内容。

根据 the logging documentation , 设置 logging.Formatter.converter = time.gmtime 应该使所有日志以 UTC 格式输出。

或者,您可以创建自己的 Formatter 类来使用 UTC:

class UtcFormatter(logging.Formatter): 
converter = time.gmtime

然后使用 dictconfig 中的 () 键(记录为 here )对其进行配置:

LOGGING = {
'formatters': {
'utc': {
'()': 'my.package.UtcFormatter',
'format': '...',
'datefmt': '...',
}
}
}

关于python - 如何在更改 TIME_ZONE 设置时保持 UTC 时间记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26435764/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com