From 1a2b313598324a7095fda41069ecd17c1240548f Mon Sep 17 00:00:00 2001 From: Infi Date: Sat, 13 Apr 2024 21:20:01 +0200 Subject: [PATCH] Remove debug log message --- ChatTwo/Store.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/ChatTwo/Store.cs b/ChatTwo/Store.cs index 49e3529..95212fb 100755 --- a/ChatTwo/Store.cs +++ b/ChatTwo/Store.cs @@ -333,7 +333,6 @@ internal class Store : IDisposable var messageChunks = ChunkUtil.ToChunks(message, ChunkSource.Content, chatCode.Type).ToList(); - Plugin.Log.Information($"Adding Message with code {chatCode} timestamp {senderId} content {message.TextValue}"); var msg = new Message(CurrentContentId, chatCode, senderChunks, messageChunks, sender, message); AddMessage(msg, Plugin.ChatLogWindow.CurrentTab ?? null);