Breakpoint not hitting when I am evaluating an expression

Answered

While I am evaluating an expression in java I have a breakpoint so it should stop there during the evaluation.

This is working in eclipse but currently not working in intelliJ.

Error message I am getting: 
"skipped breakpoint at ... because it happened inside debugger evaluation"

1
1 comment

Where did you set a breakpoint - do you set it in the code which you trigger by Evaluate action? In this case the breakpoint is skipped because the code with that logic was triggered by the breakpoint evaluation, not by the actual application code execution.

See also this comment - try disabling the File | Settings | Build, Execution, Deployment | Debugger | Data Views | Java - toString object view.

0

Please sign in to leave a comment.