Java debugger doesn't stop at breakpoints

Answered

Windows 10, Java 8 and Java 10. Created simple console app, put a breakpoint at System.out.println("Hello"); inside main() - doesn't stop.

package com.company;

public class Main {

public static void main(String[] args) {
System.out.println("Hello");
}
}

Created kotlin project - works just fine. Same with Scala - works fine.

Tried to pause in Java code, it shows some frames, even some local vars, but there is red line - "target vm is not paused by breakpoint request. Evaluation is not possible in this mode".

Invalidated caches and restarted, didn't help.

IntelliJ IDEA 2018.1.3 (Ultimate Edition)
Build #IU-181.4892.42, built on May 8, 2018
JRE: 1.8.0_152-release-1136-b38 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 10 10.0

0
2 comments

Hi. Could you please attach idea.log?

0
Avatar
Permanently deleted user

There were plenty exceptions from Ceylon Plugin, I removed it and now it works. Thanks.

0

Please sign in to leave a comment.