From 245dd722dc0f07cd51f22c5247a8b8aa7b716df3 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Thu, 18 Jan 2024 23:36:07 -0500 Subject: [PATCH] Add missing log formatting parameter Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com> --- src/Tgstation.Server.Host/Configuration/GeneralConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Configuration/GeneralConfiguration.cs b/src/Tgstation.Server.Host/Configuration/GeneralConfiguration.cs index 5b4f2a25a7..bc9c11e2f3 100644 --- a/src/Tgstation.Server.Host/Configuration/GeneralConfiguration.cs +++ b/src/Tgstation.Server.Host/Configuration/GeneralConfiguration.cs @@ -189,7 +189,7 @@ namespace Tgstation.Server.Host.Configuration $"{nameof(DeploymentDirectoryCopyTasksPerCore)} is too large for the CPU core count of {Environment.ProcessorCount} and overflows a 32-bit signed integer. Please lower the value!"); if (ByondTopicTimeout <= 1000) - logger.LogWarning("The timeout for sending BYOND topics is very low ({ms}ms). Topic calls may fail to complete at all!"); + logger.LogWarning("The timeout for sending BYOND topics is very low ({ms}ms). Topic calls may fail to complete at all!", ByondTopicTimeout); } } }