From 68321795d8d5552d5c8013b7567a8c2415dce931 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 16 May 2022 10:49:11 +1000 Subject: [PATCH] Don't log out of PVS chat messages (#8195) --- Content.Client/Chat/Managers/ChatManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Chat/Managers/ChatManager.cs b/Content.Client/Chat/Managers/ChatManager.cs index bbe50573c9..56a4501059 100644 --- a/Content.Client/Chat/Managers/ChatManager.cs +++ b/Content.Client/Chat/Managers/ChatManager.cs @@ -438,7 +438,7 @@ namespace Content.Client.Chat.Managers { if (!_entityManager.EntityExists(msg.SenderEntity)) { - _sawmill.Warning("Got local chat message with invalid sender entity: {0}", msg.SenderEntity); + _sawmill.Debug("Got local chat message with invalid sender entity: {0}", msg.SenderEntity); return; }