File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
tls/src/main/java/org/bouncycastle/jsse/provider Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -477,9 +477,9 @@ public void notifyConnectionClosed()
477477 {
478478 super .notifyConnectionClosed ();
479479
480- if (LOG .isLoggable (Level .INFO ))
480+ if (LOG .isLoggable (Level .FINE ))
481481 {
482- LOG .info (clientID + " disconnected from " + JsseUtils .getPeerReport (manager ));
482+ LOG .fine (clientID + " disconnected from " + JsseUtils .getPeerReport (manager ));
483483 }
484484 }
485485
@@ -488,9 +488,9 @@ public void notifyHandshakeBeginning() throws IOException
488488 {
489489 super .notifyHandshakeBeginning ();
490490
491- if (LOG .isLoggable (Level .INFO ))
491+ if (LOG .isLoggable (Level .FINE ))
492492 {
493- LOG .info (clientID + " opening connection to " + JsseUtils .getPeerReport (manager ));
493+ LOG .fine (clientID + " opening connection to " + JsseUtils .getPeerReport (manager ));
494494 }
495495
496496 ContextData contextData = manager .getContextData ();
@@ -509,9 +509,9 @@ public synchronized void notifyHandshakeComplete() throws IOException
509509
510510 this .handshakeComplete = true ;
511511
512- if (LOG .isLoggable (Level .INFO ))
512+ if (LOG .isLoggable (Level .FINE ))
513513 {
514- LOG .info (clientID + " established connection with " + JsseUtils .getPeerReport (manager ));
514+ LOG .fine (clientID + " established connection with " + JsseUtils .getPeerReport (manager ));
515515 }
516516
517517 TlsSession connectionTlsSession = context .getSession ();
You can’t perform that action at this time.
0 commit comments