diff --git a/Content.IntegrationTests/PoolTestLogHandler.cs b/Content.IntegrationTests/PoolTestLogHandler.cs index 909bee9785..d1a8492603 100644 --- a/Content.IntegrationTests/PoolTestLogHandler.cs +++ b/Content.IntegrationTests/PoolTestLogHandler.cs @@ -42,6 +42,11 @@ public sealed class PoolTestLogHandler : ILogHandler { var level = message.Level.ToRobust(); + // Ignore Sawmill Warnings. This means tests will only fail on debug asserts. + // Remove this when we fix the loadout performance issue. + if (level == LogLevel.Warning) + return; + if (ShuttingDown && (FailureLevel == null || level < FailureLevel)) return;