Hi, I have 400 http answer. I see it on access log /home/USER/logs/frontend/access_WEBSITE.log But error log is empty /home/USER/logs/frontend/error_WEBSITE.log Where can I find description of error? asked 03 Nov '14, 20:36 Andrey |
That just means that your application is returning a 400 HTTP Response code but isn't providing more information (so, there's nothing interesting to log). You'll need to trace the request through your application manually and determine how far it's getting. If you're using python, you can do something like this to get a python prompt at an opportune time:
This is a good choice if you want to explore the execution state but don't need a full-fledged pdb session. Also see the mod_wsgi debugging techniques. answered 04 Nov '14, 09:27 ryans ♦♦ |