0

我正在尝试在 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")

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

4

1 回答 1

0

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

于 2012-10-11T13:31:55.917 回答