Add missing log formatting parameter

Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com>
This commit is contained in:
Jordan Dominion
2024-01-18 23:36:07 -05:00
committed by GitHub
co-authored by Zephyr
parent bd712c5a63
commit 245dd722dc
@@ -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);
}
}
}