diff --git a/tests/Tgstation.Server.Tests/Live/HardFailLogger.cs b/tests/Tgstation.Server.Tests/Live/HardFailLogger.cs index 5f5e1e1713..f67aa83f72 100644 --- a/tests/Tgstation.Server.Tests/Live/HardFailLogger.cs +++ b/tests/Tgstation.Server.Tests/Live/HardFailLogger.cs @@ -27,7 +27,10 @@ namespace Tgstation.Server.Tests.Live && !logMessage.StartsWith("Error disconnecting connection ") && !(logMessage.StartsWith("An exception occurred while iterating over the results of a query for context type") && (exception is TaskCanceledException || exception?.InnerException is TaskCanceledException))) || (logLevel == LogLevel.Critical && logMessage != "DropDatabase configuration option set! Dropping any existing database...")) - failureSink(new AssertFailedException("TGS logged an error!")); + { + failureSink(new AssertFailedException("TGS logged an unexpected error!")); + Console.WriteLine("UNEXPECTED ERROR OCCURS NEAR HERE"); + } } } }