我在Heroku上运行Django网站,服务器返回500错误,但没有理由。
我从heroku日志得到的就是这条消息:
heroku[router]: at=info method=GET path="/accounts/login/"
host=dagenssalg.herokuapp.com request_id=02ec11bf-ea26-4f98-
ab5a-270147167d42 fwd="87.57.162.154" dyno=web.1 connect=0ms
service=29ms status=500 bytes=234 protocol=https
DEBUG设置为false:
DEBUG = False
有没有办法显示错误的详细信息?
编辑:
使用LogEntries应用程序作为此问题:How do you diagnose a 500 error on Heroku when there is no error message in the logs? sugest不会更改任何内容,因为它会获取与Heroku日志相同的日志。
我的应用程序使用此Procfile在Gunicorn上运行:
web: gunicorn dagenssalg.wsgi --log-file -
有没有办法指示Gunicorn在哪里发送错误日志?
最好的问候Kresten