我有一个与Gunicorn一起使用的Django应用。当我添加--access-logfile=-
时,将访问日志添加到stdout,但是当我将日志记录添加到settings.py
时,如下所示:
LOGGING = {
'version': 1,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
},
},
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'verbose'
},
},
'loggers': {
'django': {
'handlers': ['console'],
'level': 'DEBUG',
'propagate': True,
},
}
}
Gunicorn访问日志停止进入标准输出。这是为什么?我明白了:
[2018-11-09 15:46:53 +0000] [19] [INFO] Starting gunicorn 19.9.0
[2018-11-09 15:46:53 +0000] [19] [INFO] Listening at: http://0.0.0.0:8000 (19)
[2018-11-09 15:46:53 +0000] [19] [INFO] Using worker: sync
[2018-11-09 15:46:53 +0000] [22] [INFO] Booting worker with pid: 22
据我所知,这是来自金枪鱼,但没有进一步的输出。