File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
visualvm/jmx/src/org/graalvm/visualvm/jmx/impl Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -524,14 +524,14 @@ void connect() {
524
524
if (e .toString ().contains ("com.sun.enterprise.security.LoginException" )) { // NOI18N
525
525
throw new SecurityException ("Authentication failed! Invalid username or password" ); // NOI18N
526
526
}
527
- if (LOGGER .isLoggable (Level .INFO )) {
527
+ if (LOGGER .isLoggable (Level .FINE )) {
528
528
// Try to provide info on the target
529
529
// Use PID when attach was used to connect,
530
530
// Use JMXServiceURL otherwise...
531
531
final String param =
532
532
(lvm != null ) ? String .valueOf (lvm .vmid ())
533
533
: ((jmxUrl != null ) ? jmxUrl .toString () : "" ); // NOI18N
534
- LOGGER .log (Level .INFO , "connect(" + param + ")" , e ); // NOI18N
534
+ LOGGER .log (Level .FINE , "connect(" + param + ")" , e ); // NOI18N
535
535
}
536
536
}
537
537
}
You can’t perform that action at this time.
0 commit comments