Reputation: 33
I used a hint that said use Run with --debug
, so I clicked on it. How can I remove the feature to get an output as usual?
Upvotes: 3
Views: 1013
Reputation: 401897
Clicking this link will create a new temporary configuration for Gradle that will have --debug
argument added there:
You can either remove this argument from the configuration or delete this configuration completely and continue using your existing run/debug configurations without this option.
More details can be found in IntelliJ IDEA help.
Upvotes: 4
Reputation: 1470
Click the red square on the top right, like here:
Alternatively you can also press it in the tab where you can control the debugger, which is on the down left:
If you don't see that, make sure to click on "Debug" on the bottom bar.
Upvotes: 0