Django provides a runserver that prints out the requests in near-real time in the cli. How would I print out all requests for a website that runs on apache/wsgi?
You would run tail -F on the web server's logs, or you would run the web server in the foreground via httpd -X.
/var/log - Ignacio Vazquez-Abrams 2012-04-05 02:29