You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: espresso/src/com.oracle.truffle.espresso.jdwp/src/com/oracle/truffle/espresso/jdwp/api/VMEventListenerImpl.java
Copy file name to clipboardExpand all lines: espresso/src/com.oracle.truffle.espresso.jdwp/src/com/oracle/truffle/espresso/jdwp/impl/DebuggerConnection.java
Copy file name to clipboardExpand all lines: espresso/src/com.oracle.truffle.espresso.jdwp/src/com/oracle/truffle/espresso/jdwp/impl/DebuggerController.java
+28-15Lines changed: 28 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@
33
33
importjava.util.Map;
34
34
importjava.util.concurrent.Callable;
35
35
importjava.util.concurrent.CountDownLatch;
36
+
importjava.util.concurrent.locks.Lock;
36
37
importjava.util.function.Supplier;
37
38
importjava.util.logging.Level;
38
39
importjava.util.regex.Pattern;
@@ -131,11 +132,13 @@ public void reInitialize() {
131
132
assertsetupState != null;
132
133
133
134
if (setupState.fatalConnectionError) {
134
-
System.err.println("ERROR: Debuggers will not be able to connect to this context again!");
135
+
fine(() -> "Failed debugger setup due to initial connection issue.");
Copy file name to clipboardExpand all lines: espresso/src/com.oracle.truffle.espresso.jdwp/src/com/oracle/truffle/espresso/jdwp/impl/HandshakeController.java
0 commit comments