How to step through Swing app in Intellij

985 Views Asked by At

I am new to Intellij and am running a GUI app and wanted to know if there was a better way to trace execution than to run through debug mode and click through each line of code. I only want to see each function call and have it jump between functions in the IDE when I interact with the GUI.

1

There are 1 best solutions below

0
On

IntelliJ IDEA debugger has the option to log the breakpoints without stopping. You can put the logging breakpoints (Suspend disabled, Log enabled) where needed and use your app while watching the logs in the IDE console.