From 0f51785b2131cede2f592397eb99602c5727bea7 Mon Sep 17 00:00:00 2001 From: carbotaniuman <41451839+carbotaniuman@users.noreply.github.com> Date: Wed, 27 Jan 2021 13:36:49 -0600 Subject: [PATCH] add the word threads --- src/main/kotlin/mdnet/netty/ApplicationNetty.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) {