Hi Team,
I found that if I have multiple 'console.log("some debug information")' in my server script, they don't seem to show in the correct order when I open the trace tab.
To be more specific , I have the following code in a server script:
------------console.log("01. some debug info");
--do something---
console.log("02. some debug info");
--do something---
console.log("03. some debug info");
--do something---
console.log("04. some debug info");
--do something---
When the script is run, and I expect to see the logs from the "Trace" tab in the order of
some debug info
some debug info
some debug info
some debug info
by somehow, I got them in random order, for example:
some debug info
some debug info
some debug info
some debug info
This causes problem for debugging, as the chronicle sequence of debug information can be quite important.
Please check.
Thanks
Dongzhi