diff --git a/Projects/Server/World/World.cs b/Projects/Server/World/World.cs index 401460de1..af6eda095 100644 --- a/Projects/Server/World/World.cs +++ b/Projects/Server/World/World.cs @@ -430,6 +430,9 @@ public static class World } } + // Debug-level output only exists in DEBUG builds (see LogFactory), so Release builds + // should not pay for the stat summing and argument boxing inside the freeze at all. + [Conditional("DEBUG")] private static void LogWorkerBalance() { var totalEntities = 0L;