Hello Dojo
I'm checking how long an element takes to start up. Looking at the following example, I can see that the starting action was triggered at 10:52:15.335 and finished at 10:52:15.516, summing up to a total of 181 ms
On the log message, the value displayed is 113500 ms, which represents almost 2 minutes.
My question is: Are this values trustworthy or am I interpreting this in the wrong way?
Thank you,
Ana
Hi Ana,
From the log you posted, the log indicating the start of an action does not happen on the same thread (6728) as the log indicating the end of an action (6988), if you want to correlate this data correctly, you need to look for the log that mentions the start action on thread 6988.
Note: The log header is structured as follows:
Timestamp|processname|processid|threadid|actual log information
Thank you for the clarification!