Debug
Once the connection is established, we can proceed to setting up debugging.
Debugging, in principle
Generally speaking, to perform debugging in VS Code, you need to:
-
Configure the debugging in
launch.json
. -
Start listening on incoming debugging connections or initiate one from the IDE (depending on the language).
-
Add a breakpoint in the code (or more).
-
Generate a request so the debugging session begins.
Examples
We have also prepared a few concrete examples for you to follow:
Updated 10 months ago