英文:
Stop debug mode in IntelliJ IDEA when using Gradle
问题
我使用了一个提示,上面写着使用 带着 --debug 运行
,所以我点击了它。我怎样才能去掉这个功能,以便像通常一样获得输出?
英文:
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?
答案1
得分: 4
点击此链接将为Gradle创建一个新的临时配置,其中将添加--debug
参数:
您可以从配置中删除此参数,或者完全删除此配置,并继续使用现有的运行/调试配置而不使用此选项。
更多详细信息,请参见IntelliJ IDEA帮助文档。
英文:
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.
答案2
得分: 0
或者您也可以在可以控制调试器的选项卡中按它,该选项卡位于左下角:
如果您看不到它,请确保在底部工具栏上单击“调试”。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论