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)) }