aliasav
aliasav

Reputation: 3168

Interpreting Django server request log

When I start the Django server, I can see the logs in the terminal:

[31/Jan/2015 14:06:27] "GET / HTTP/1.1" 200 30697

What does the last number signify? ('30697' in this example)

Upvotes: 4

Views: 199

Answers (1)

catavaran
catavaran

Reputation: 45575

This is the size of the response (in bytes).

Upvotes: 9

Related Questions