debugging - Stop Django printing GET and POST statements to the console? -


this question has answer here:

when run django locally using runserver:

$ python manage.py runserver 

and load page, see tons of requests printed @ console.

[15/jul/2013 12:40:12] "get /media/img/thumbnails/aw-44355258.jpg http/1.1" 304 0 [15/jul/2013 12:40:12] "get /media/img/thumbnails/aw-44359161.jpg http/1.1" 304 0 [15/jul/2013 12:40:12] "get /media/img/thumbnails/aw-44388528.jpg http/1.1" 304 0 

how can stop django printing these? they're distracting me other debug statements.

i want keep debug set true can other debugging @ console.

this default behaviour of development server. can run development code in different server on local machine django debug options turned on.


Comments