-1

I have a python bottle framework webservice that is running on my localmachine.

It is working fine but when I see the console, I see a number followed by the response status code. In the below line what is the number 166 followed by 200.

127.0.0.1 - - [24/Oct/2017 17:34:50] "POST /tensorservice HTTP/1.1" 200 166
user1050619
  • 19,822
  • 85
  • 237
  • 413
  • This question is off-topic because it is about an application layer protocol, not software programming – 0TTT0 Oct 25 '17 at 00:41
  • What a bad question, you didn't even tell us which framework you are using. – Sraw Oct 25 '17 at 01:16

1 Answers1

0

It is the size of the response to the client (bytes sent).

I think it is the standard format of wsgi logs and the exact details of each of the fields are discussed in Understanding Apache's access log

Anoop
  • 5,540
  • 7
  • 35
  • 52