我的日志记录配置如下:
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'mail_admins': {
'level': 'INFO',
'class': 'common.handlers.SuperAdminEmailHandler'
},
'console': {
'level': 'INFO',
'class': 'logging.StreamHandler'
}
},
'loggers': {
'': {
'handlers': ['console'],
'level': 'INFO',
'propagate': True,
},
'django.request': {
'handlers': ['console'],
'level': 'ERROR',
'propagate': True,
},
},
}
这是与CELERYD_HIJACK_ROOT_LOGGER = False
. 我也有这个任务:
@periodic_task(run_every=crontab())
def test_logging():
import logging
print('running test_logging')
logging.info("Here's an info message", extra = {
'tell_admins': True, 'email_content': 'Additional content'
})
logging.error("Here's an error message")
我有一个直接调用 test_logging 的测试 URL。当我点击该 URL 时,我会看到以下输出:
running test_logging
Here's an info message
Here's an error message
[05/Jul/2013 11:07:27] "GET /test/ HTTP/1.1" 200 7
正是我所期望的。但是,当相同的功能通过 celery 运行时,我得到:
Scheduler: Sending due task scheduler.tasks.test_logging (scheduler.tasks.test_logging)
running test_logging
Here's an error message
信息消息去哪了?!我尝试添加另一个特定于芹菜的记录器:
'celery': {
'handlers': ['console'],
'level': 'INFO',
'propagate': True,
},
现在我从芹菜中看到了这个:
running test_logging
running test_logging
Here's an error message
Task scheduler.tasks.test_logging[271b8a4a-0c04-4391-81c5-5b009d70b08d] succeeded in 0.00929498672485s: None
仍然没有信息消息。关于为什么以及如何找回它的任何想法?