Python 哪个记录器正在gunicorn中输出此信息?

Python 哪个记录器正在gunicorn中输出此信息?,python,logging,gunicorn,Python,Logging,Gunicorn,当我启动gunicorn时,它会打印以下内容: [2018-11-09 16:30:20 +0000] [16] [INFO] Starting gunicorn 19.9.0 [2018-11-09 16:30:20 +0000] [16] [INFO] Listening at: http://0.0.0.0:8000 (16) [2018-11-09 16:30:20 +0000] [16] [INFO] Using worker: sync [2018-11-09 16:30:20 +0

当我启动gunicorn时,它会打印以下内容:

[2018-11-09 16:30:20 +0000] [16] [INFO] Starting gunicorn 19.9.0
[2018-11-09 16:30:20 +0000] [16] [INFO] Listening at: http://0.0.0.0:8000 (16)
[2018-11-09 16:30:20 +0000] [16] [INFO] Using worker: sync
[2018-11-09 16:30:20 +0000] [19] [INFO] Booting worker with pid: 19

为gunicorn包设置记录器(传播)似乎不会影响它。我应该配置哪个模块来修改这些消息?

这些消息由
gunicorn/Arbiter.py
中的
Arbiter
类输出,但可能是您尝试和执行的任何配置都被gunicorn的机制覆盖,或者不适用-例如,尝试在辅助进程中设置日志不会影响仲裁程序的工作,因为它们是独立的进程。因此,如果您想影响仲裁器的日志记录,或者修改仲裁器使用的gunicorn配置,则可能需要以特殊方式调用仲裁器(即,不只是通过运行一个固定的
gunicorn
脚本)