Home > Software engineering >  Intellij Debugging - Why is step in/step out greyed out?
Intellij Debugging - Why is step in/step out greyed out?

Time:09-17

This is what I see in my Intellij UI IDE

enter image description here

The correct breakpoint is being hit(line 128 - checkRunFlag() )

but the step over/step in buttons next to console in the bottom left part of the screen are greyed out. Does anyone know what is causing this/how I can re-enable those buttons?

CodePudding user response:

enter image description here

change to your debug application

CodePudding user response:

I'm still not sure what the cause of this issue was but what I did to fix the issue was call kill -9 with the process id of Intellij

Then I restarted Intellij and it's working fine now

CodePudding user response:

you can click the "pause pragram" to see where the breakpoints stopped. then make sure it's your expect application. enter image description here

  • Related