I am trying to debug my django code in pycharm3,
I notice that when I run the request, I see the following in the launch window:
Django version 1.6.1, using settings 'driver1.settings'
Starting development server at http:
Quit the server with CTRL-BREAK.
[19/Mar/2014 11:14:05] "POST /myfunction/ HTTP/1.1" 200 23
I know 200 is the HTTP status code for OK, but what is 23?
source
share