From dcd233b7ad790993b05896abc8868083b18252f9 Mon Sep 17 00:00:00 2001 From: LoveIsGrief Date: Wed, 22 Jan 2020 15:12:01 +0100 Subject: [PATCH] Reduce log levels in Connection Too verbose --- .../main/groovy/com/muwire/core/connection/Connection.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/groovy/com/muwire/core/connection/Connection.groovy b/core/src/main/groovy/com/muwire/core/connection/Connection.groovy index 39b9ab82..69e525f8 100644 --- a/core/src/main/groovy/com/muwire/core/connection/Connection.groovy +++ b/core/src/main/groovy/com/muwire/core/connection/Connection.groovy @@ -88,11 +88,11 @@ abstract class Connection implements Closeable { log.log(Level.WARNING, "$name already closed", new Exception() ) return } - log.info("closing $name") + log.fine("closing $name") reader.interrupt() writer.interrupt() endpoint.close() - log.info("closed $name") + log.fine("closed $name") eventBus.publish(new DisconnectionEvent(destination: endpoint.destination)) }