From e0cd13917ff918bf81080a8db8bb55f0de579f68 Mon Sep 17 00:00:00 2001 From: Dominion Date: Tue, 23 May 2023 02:59:15 -0400 Subject: [PATCH] Promotes a warning to an error --- src/Tgstation.Server.Host/Components/Chat/ChatManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs index c17c703ed6..aa65578aa0 100644 --- a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs +++ b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs @@ -1045,7 +1045,7 @@ namespace Tgstation.Server.Host.Components.Chat } catch (Exception ex) { - logger.LogWarning(ex, "Error in asynchronous chat message!"); + logger.LogError(ex, "Error in asynchronous chat message!"); } }