I am trying to debug my django code in pycharm3,
I notice that when I run a request I see the following in the run window:
Django version 1.6.1, using settings 'driver1.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
[19/Mar/2014 11:14:05] "POST /myfunction/ HTTP/1.1" 200 23
I know that 200 is the HTTP status code for 'OK', but what is '23'?
The second value describes the length in bytes your reponse had. Sometimes you'll see an third value - this is the total time in seconds your response took.
So your request to /myfunction/
responded an HTTP status 'OK' and the data returned had 23 byte in its length.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With