Fixed typo in log

This commit is contained in:
nathan 2020-08-13 01:03:40 +02:00
parent 290688b51c
commit 315eb9d80b

View File

@ -49,7 +49,7 @@ internal class ServerHandshake<CONNECTION : Connection>(logger: KLogger,
val maxPortCount = portsPerClient * config.maxClientCount
portAllocator = PortAllocator(minPort, maxPortCount)
logger.info("Server connection port range [$minPort - ${minPort + maxPortCount}")
logger.info("Server connection port range [$minPort - ${minPort + maxPortCount}]")
}