Skip to content

Commit 9edd166

Browse files
committed
Merge branch 'main' of gitlab.cryptoworkshop.com:root/bc-java
2 parents e761671 + a19343d commit 9edd166

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tls/src/main/java/org/bouncycastle/jsse/provider/ProvTlsClient.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)