Python错误日志位置

时间:2014-03-11 19:13:51

标签: python apache logging error-handling flask

我正在flask框架上开发一个python应用程序。我使用.wsgi来部署它。我对错误日志位置感到困惑。看起来Python错误和调试信息被放入不同的日志文件中。

首先,我在apache vhost文件中指定了访问和错误日​​志位置。

<VirtualHost *:myport>
    ...
    CustomLog /homedir/access.log common
    ErrorLog /homedir/error.log
    ...
</VirtualHost>

我还知道还有另一个apache错误日志/var/log/httpd/error_log。我的访问日志已打印到正确的位置/homedir/access.log

但是,错误日志看起来很奇怪。 Python错误(如SyntaxError)未捕获的异常转到vhost文件(/homedir/error.log)中指定的日志文件。但是,python logging模块生成的任何日志消息都转到了“默认”错误日志(/var/log/httpd/error_log)。

任何人都可以解释为什么会发生这种情况以及如何解决这个问题?我希望这两个日志转到同一个地方。


感谢您的评论。这是我设置记录器的代码

import logging

# I didn't specify the stream, so it suppose to be stderr
# Don't know why stderr points to apache /var/log/*, rather than my error log

stream_handler = logging.StreamHandler()
formatter = logging.Formatter("%(levelname)s : %(pathname)s:%(lineno)s - %(msg)s")
stream_handler.setFormatter(formatter)

logger = logging.getLogger('foo')
logger.addHandler(stream_handler)
logger.setLevel(logging.DEBUG)

然后,我以这种方式记录了消息。

import logging
logger = logging.getLogger('foo.bar')

logger.debug('Some debug information')

但是,日志转到/ var / log / httpd / error_log,而不是apache vhost文件中指定的日志。

1 个答案:

答案 0 :(得分:0)

您应该使用EntityManager而不是flask.logging.default_handler,因为前者使用logging.StreamHandler()创建流,而后者没有,请参考here以获得详细信息。

有关request.environ['wsgi.errors']的更多信息,请参见here