How to view Debug statements in order?

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!

Console was set to “Collapse.” Deselecting will give the behavior I was looking for. Thanks for the tip Lo0NuhtiK!