Skip to content

Commit 4bb5fab

Browse files
committed
log IOException in JMX
1 parent c771e00 commit 4bb5fab

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

visualvm/jmx/src/org/graalvm/visualvm/jmx/impl/ProxyClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ private void tryConnect() throws IOException {
290290
try {
291291
jmxc.connect(env);
292292
} catch (java.io.IOException e) {
293+
LOGGER.log(Level.INFO, "tryConnect", e); // NOI18N
293294
// Likely a SSL-protected RMI registry
294295
if ("rmi".equals(jmxUrl.getProtocol())) { // NOI18N
295296
env.put("com.sun.jndi.rmi.factory.socket", sslRMIClientSocketFactory); // NOI18N

0 commit comments

Comments
 (0)