You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to be able to automatically parse answlog.log for server requests and responses. To do so, I have to match the requests with the corresponding responses. As far as I understand, there is no guarantee that the response to a request will directly follow that particular request in the log. For example, it can be:
Request A
Response A
Request B
Response B
or
Request A
Request B
Response B
Response A
So, is it possibly to properly order the log messages?
The text was updated successfully, but these errors were encountered:
I want to be able to automatically parse
answlog.log
for server requests and responses. To do so, I have to match the requests with the corresponding responses. As far as I understand, there is no guarantee that the response to a request will directly follow that particular request in the log. For example, it can be:or
So, is it possibly to properly order the log messages?
The text was updated successfully, but these errors were encountered: