Django mod_python日志记录问题

时间:2012-10-11 13:11:18

标签: python django logging mod-python

我正在尝试在Django中调试我的视图文件。 我在服务器上使用带有mod_python的Django 1.3。

如何从我的视图文件中看到一些内容。 我已经尝试使用标准日志记录配置

LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'formatters': {
    'standard': {
        'format' : "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] %(message)s",
        'datefmt' : "%d/%b/%Y %H:%M:%S"
    },
},
'handlers': {
    'null': {
        'level':'DEBUG',
        'class':'django.utils.log.NullHandler',
    },
    'logfile': {
        'level':'DEBUG',
        'class':'logging.handlers.RotatingFileHandler',
        'filename': SITE_ROOT + "/logfile",
        'maxBytes': 50000,
        'backupCount': 2,
        'formatter': 'standard',
    },
    'console':{
        'level':'INFO',
        'class':'logging.StreamHandler',
        'formatter': 'standard'
    },
},
'loggers': {
    'django': {
        'handlers':['console'],
        'propagate': True,
        'level':'WARN',
    },
    'django.db.backends': {
        'handlers': ['console'],
        'level': 'DEBUG',
        'propagate': False,
    },
    'customer_portal': {
        'handlers': ['console', 'logfile'],
        'level': 'DEBUG',
    },
}
}

我在我的视图文件中写道:

import logging
log = logging.getLogger('customer_portal')
log.debug("Some data")

但是没有创建带日志的文件。 谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

我剪切/粘贴您的代码,它对我有用。也许您尝试写入的目录和/或文件的权限不正确?