Django日志记录设置配置问题

时间:2013-08-03 16:40:15

标签: django logging error-handling error-logging django-settings

我的记录设置如下:

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': LOG_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,
        },
        'home': {
            'handlers': ['console', 'logfile'],
            'level': 'DEBUG',
        },
    }
}

我称之为

import logging
log = logging.getLogger('home')
log.error("Hey there it works!!")

收到错误No handlers could be found for logger "home"

似乎我在配置过程中遗漏了一些东西,也经历了过去的SQ问题来弄清楚,但无法弄明白。

有什么问题,有什么线索?

提前致谢。

0 个答案:

没有答案