-
Notifications
You must be signed in to change notification settings - Fork 5
Debugging
Ben Bucksch edited this page Jan 15, 2025
·
4 revisions
- In the Mustang main window, press F12 or Ctrl-Shift-I to start the Inspector
- Tab "Sources"
- You can set breakpoints by clicking on the bar on the left side of the source line.
- The right panel has the debugger inspection
- Use
netstat
, look forLISTEN
of port 5453 (backend port, on debug builds) or 5355 (release builds), and look for the process ID (PID
) of the process. - Use a debugger to connect to that process.
TODO Document how.
- Visual Studio Code
- Left bar, [Test] button
- Run a specific test in debug mode
TODO Alternatives to Visual Studio Code