我正在尝试在 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")
但是没有创建带有日志的文件。感谢帮助。