How can I make the console display debug statements in order? For example, the editor normally displays debugs like this:
Debug1 - 3 times
Debug2 - 1 time
Debug3 - 2 times
But I’d like to trace my code more easily to see the order of events, and have something more like:
Debug1
Debug2
Debug1
Debug3
Debug1
Debug3
Any input is appreciated, thanks!