Reputation: 1021
I have problems with debugging in IntelliJ Idea 2016.2. I am using grails version 2.4.3
But sometimes the debugger works not as excpected. The debugger does not stop on breakpoints even if the code is executed. Sometimes the debugger shows me, that he is in wrong branch of an if statement, but the code is not executed. The debugger also sometimes stops in catch blocks, but no exception is thrown and so on and so on.
Does anybody face the same problems? Is this a problem with IntelliJ? Are there any other tools which I could use?
Upvotes: 1
Views: 361
Reputation: 26
I have similar problem. Downgrading to version 2016.1 seems to solve it. Think that we should wait for some newer version of Intellij IDEA.
Upvotes: 1
Reputation: 632
I have similar problem with grails and Intellij when I use autoreloading.
Intellij not recognize the 'new' code to debug and stop on breakpoint at the 'old' point.
Stop and re-run your application probably solve that.
Upvotes: 0