我有一个 python 脚本,它本质上是一个小型套接字服务器,它为我执行一些简单的网络任务,我开始将它作为一个新贵服务运行以跟踪它并管理它是否正在运行。为了记录信息,我使用 Python 内置的日志记录模块。当作为 Upstart 服务运行时,我注意到一个小问题:所有时间调用都在 GMT 中出现。当它自己运行(./scriptname.py
或者python scriptname.py
)时,它使用本地时间,并且 Python 知道本地时间。系统时间设置正确,我只在作为新贵服务运行时看到此行为。有谁知道为什么会发生这种情况以及我该如何解决?
编辑:相关代码:我有一个助手类,方便地称为助手,它包含一些经常使用的功能(我知道它需要更好地组织,但它很快就被组合在一起了)。最值得注意的是我用来设置记录器的这个函数:
class helper:
log_format = '%(asctime)-25s %(name)-25s %(levelname)-12s %(message)s'
@staticmethod
def createLogger(name):
rotatingFile = logging.handlers.RotatingFileHandler('/var/log/myLog.log', maxBytes=1048576, backupCount=5)
rotatingFile.setLevel(logging.DEBUG)
formatter = logging.Formatter(helper.log_format)
formatter.time = localtime()
rotatingFile.setFormatter(formatter)
log = logging.getLogger(name)
log.setLevel(logging.DEBUG)
logging.basicConfig(format=helper.log_format, level=logging.DEBUG)
if not log.handlers:
log.addHandler(rotatingFile)
return log
它在我的一个课程中被这样使用:
class MyClass:
def __init__(self):
self._log = helper.createLogger('LogName')
self._log.info('Some relevant info')
_log = None
这一切都非常简单地使用了 python 内部日志工具。在我开始注意到这个问题之后,我添加了formatter.time = localtime()
,但在我意识到它只在作为服务运行时才发生。它没有帮助。
这是我从教程中获得的(非常基本的)新贵配置:
description "Blah blah"
author "My Name <My Email>"
start on runlevel [234]
stop on runlevel [0156]
exec /path/to/script.py
respawn