NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: CaseyR on June 10, 2019, 10:45:26 AM

Title: Debugging - When is a log entry made? Start or end of a request?
Post by: CaseyR on June 10, 2019, 10:45:26 AM
Second question

Is the entry in Logging made at the start of the request process or at the end.  In other words, when we look at the last log entry, is that the last completed request or the one in process (if the server is not able to finish the request).

Thanks. 
Title: Re: Debugging - When is a log entry made? Start or end of a request?
Post by: Bruce on June 10, 2019, 11:25:57 PM
I think the log occurs at the _start_ of the process (for a GET).
For a POST there are 2 entries - one when the POST _starts_ to arrive (and the header has arrived) and another when the complete post has been received.

cheers
Bruce
Title: Re: Debugging - When is a log entry made? Start or end of a request?
Post by: CaseyR on June 11, 2019, 08:32:50 AM
That will help thanks