Visual Studio Code debugger sections
The DEBUG view provides several sections and output windows to inspect, step by step, what’s currently executing, the variable assignment status, and the code process flow. It is also possible to get some insight into code performance by gathering the longest-running database queries. Consider the following screenshot:
Figure 10.2: DEBUG view
The debugger is basically divided into four sections: the sidebar, the toolbar, and the editor and output windows. The editor window highlights where the code is currently stopped. This is typically marked in yellow. The debug console in the output window section shows debugging information.
Debugger sidebar
The sidebar is enabled by default and is located on the left side of the debugger. It is possible to switch its position with the editor (right-click in one of the sections and select Move sidebar right – if you are familiar with Visual Studio, this might be your preferred...