Ben
Ben

Reputation: 33

Stop debug mode in IntelliJ IDEA when using Gradle

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

Answers (2)

CrazyCoder
CrazyCoder

Reputation: 401897

Clicking this link will create a new temporary configuration for Gradle that will have --debug argument added there:

Debug arguments

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

Moritz Groß
Moritz Groß

Reputation: 1470

Click the red square on the top right, like here: enter image description here

Alternatively you can also press it in the tab where you can control the debugger, which is on the down left:
enter image description here

If you don't see that, make sure to click on "Debug" on the bottom bar.

Upvotes: 0

Related Questions