Output troubles in Debug Console of Visual Studio Code

Viewed 692

How can I avoid the grouping of identicals lines in the Debug Console ? For example I get

 _
| |\
|_| \
4    |

and I want

 _
| |\
|_| \
     |
     |
     |
     |
1 Answers

This was just added in the November 2020 releaase.

Debug Console: collapse identical lines

The Debug Console now collapses identical output and shows the number of occurrences. This feature makes it much easier to grasp repetitive program output.

A setting is being added to v1.54 to toggle collapsing identical lines on/off:

debug.console.collapseIdenticalLines

We have introduced a setting debug.console.collapseIdenticalLines. This setting controls if the debug console should collapse identical lines and show a number of occurrences with a badge. Default is to collapse.

Related