From 4bc04ae6319305f71f7cdd38e76e246f5a53a404 Mon Sep 17 00:00:00 2001 From: LoveIsGrief Date: Sat, 25 Jan 2020 15:01:21 +0100 Subject: [PATCH] Revert "Reduce log levels in Connection" This reverts commit dcd233b7 --- .../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 69e525f8..39b9ab82 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.fine("closing $name") + log.info("closing $name") reader.interrupt() writer.interrupt() endpoint.close() - log.fine("closed $name") + log.info("closed $name") eventBus.publish(new DisconnectionEvent(destination: endpoint.destination)) }