Update Debugging In Intellij authored by Gregory Neibert's avatar Gregory Neibert
...@@ -34,7 +34,7 @@ If you would relinquish control to the computer, simply press the Resume Program ...@@ -34,7 +34,7 @@ If you would relinquish control to the computer, simply press the Resume Program
Doing so without muting all breakpoints will cause the program to pause at the next breakpoint it reaches. Doing so without muting all breakpoints will cause the program to pause at the next breakpoint it reaches.
#### * Mute Breakpoints #### * Mute Breakpoints
By pressing this button, all breakpoints will be "muted". A muted breakpoint remains in the list of breakpoints (described later), but the program will not stop at it. By pressing this button, all breakpoints will be "muted". A muted breakpoint remains in the list of breakpoints ([described here](#breakpoints-menu)), but the program will not stop at it.
<p align="center"> <p align="center">
<img src="https://i.imgur.com/l480710.png"/> <img src="https://i.imgur.com/l480710.png"/>
...@@ -57,7 +57,7 @@ A basic example for how to set a condition is shown below. ...@@ -57,7 +57,7 @@ A basic example for how to set a condition is shown below.
</p> </p>
### Logging Breakpoint ### Logging Breakpoint
A basic breakpoint has the option to log the Stack trace (or simply state that it was reached). This is similar to using a print statement, except it is much easier to guarantee its removal once it is no longer needed (using the menu described later). Additionally, it makes it much easier to work backwards, as the exact route to reach that point has been printed. A basic breakpoint has the option to log the Stack trace (or simply state that it was reached). This is similar to using a print statement, except it is much easier to guarantee its removal once it is no longer needed (using the menu [described here](#breakpoints-menu)). Additionally, it makes it much easier to work backwards, as the exact route to reach that point has been printed.
Setting these options can be done by left clicking the breakpoint and doing the following: Setting these options can be done by left clicking the breakpoint and doing the following:
... ...
......