我在Gunicorn和Nginx上运行我的Flask应用程序作为反向代理。我有以下日志记录代码:
app.logger.error("This is an error")
app.logger.info("This is an info")
我的枪炮被执行了以下参数
gunicorn --log-file /home/ubuntu/myproject/logs/gunicorn.log --log-level DEBUG --workers 3 --bind unix:myproject.sock -m 007 wsgi:app
现在执行我的例程时,我在gunicorn.log上收到错误消息("这是一个错误")但是我没有看到任何错误消息("这是一个信息& #34;)在文件中。我可以知道如何解决这个问题吗?
答案 0 :(得分:0)
尝试--log-level=info
:
gunicorn --log-file /home/ubuntu/myproject/logs/gunicorn.log --log-level INFO --workers 3 --bind unix:myproject.sock -m 007 wsgi:app