Revert "Reduce log levels in Connection"

This reverts commit dcd233b7
pull/37/head
LoveIsGrief 2020-01-25 15:01:21 +01:00
parent 56da9a16b0
commit 4bc04ae631
No known key found for this signature in database
GPG Key ID: E96D1EDFA05345EB
1 changed files with 2 additions and 2 deletions

View File

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