diff --git a/src/main/kotlin/mdnet/netty/ApplicationNetty.kt b/src/main/kotlin/mdnet/netty/ApplicationNetty.kt index 244465e..9e66c43 100644 --- a/src/main/kotlin/mdnet/netty/ApplicationNetty.kt +++ b/src/main/kotlin/mdnet/netty/ApplicationNetty.kt @@ -108,7 +108,7 @@ sealed class NettyTransport(threads: Int) { val name = SystemPropertyUtil.get("os.name").toLowerCase(Locale.UK).trim { it <= ' ' } val threadsToUse = if (threads == 0) defaultNumThreads() else threads - LOGGER.info { "Choosing a transport using $threadsToUse" } + LOGGER.info { "Choosing a transport using $threadsToUse threads" } if (name.startsWith("linux")) { if (IOUring.isAvailable()) {