0

出于某种原因,当我使用该功能时,我在生产服务器上看不到调试日志消息。logging.debug,logging.info和函数工作logging.warninglogging.error很好。我在应用程序引擎上使用 django 并在我的settings.py文件中有以下设置:

def config_logging(in_dict):
    import logging
    logging.basicConfig(
        level = logging.DEBUG,
        format = '%(asctime)s %(levelname)s %(message)s',
    )

LOGGING_CONFIG = "settings.config_logging"

另请注意,当我--debug在开发服务器上使用该标志时,会显示正确的日志。

我不知道为什么没有记录调试日志。有什么建议么?

4

1 回答 1

0

I don't know if something in django differs for this, but you need to include --debug as a flag when you start the server to see debug-level log messages in a non-django app.

于 2012-09-29T18:27:39.077 回答