gunicorn 启动无日志

gunicorn -c gunicorn_info.py info:app

接手整理老项目,发现有个服务迁移后启动不了,也没报错信息

修改gunicorn_info.py里的daemon = not settings.DEBUG为daemon = settings.DEBUG开启日志信息,后根据日志信息排错解决

原文地址:https://www.cnblogs.com/cainiaoit/p/8872906.html