Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I run a Django development server and view my application in a browser, I get messages like this:

[08/Jan/2011 18:12:45] "GET / HTTP/1.1" 200 2714

[08/Jan/2011 18:12:45] "GET /static/style.css" 200 2714

[08/Jan/2011 18:12:45] "GET /content.html" 200 269

...

What does the last number on each line mean? (I know that the number one before last is standard HTTP status message, but don't know what the following number represents)

share|improve this question

1 Answer

up vote 3 down vote accepted

It's the number of bytes sent, see django/core/servers/basehttp.py:

self.request_handler.log_request(self.status.split(' ',1)[0], self.bytes_sent)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.