The logs of POST/GET requests from Django application on Apache
问题 Django development server is really nice, it shows the log of all POST/GET requests as well as other events in real time. Example of logs from Django dev server: [04/Jul/2012 19:23:27] "GET /static/images/sprites/submit_url_hover.png HTTP/1.1" 200 7088 [04/Jul/2012 19:23:42] "POST /validate_link HTTP/1.1" 200 0 [04/Jul/2012 19:23:44] "POST /download_link HTTP/1.1" 200 0 It's very useful for debugging, figuring out the sources of 500 errors, etc. I've recently deployed my Django app on Apache