From 6d51ba8b8154968474f12e0043dc6f4da07cfce0 Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Sat, 29 Jan 2022 00:53:31 -0500 Subject: [PATCH] fix: remove debug lines --- ChatTwo/GameFunctions/Chat.cs | 1 - ChatTwo/Ui/ChatLog.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/ChatTwo/GameFunctions/Chat.cs b/ChatTwo/GameFunctions/Chat.cs index 62d5c52..2da2cb6 100755 --- a/ChatTwo/GameFunctions/Chat.cs +++ b/ChatTwo/GameFunctions/Chat.cs @@ -280,7 +280,6 @@ internal sealed unsafe class Chat : IDisposable { } foreach (var (key, (_, keybind)) in turnedOff) { - PluginLog.Log($"intercepting {keybind}"); this.Plugin.KeyState[key] = false; if (!KeybindsToIntercept.TryGetValue(keybind, out var info)) { diff --git a/ChatTwo/Ui/ChatLog.cs b/ChatTwo/Ui/ChatLog.cs index 33b5a3e..d589856 100755 --- a/ChatTwo/Ui/ChatLog.cs +++ b/ChatTwo/Ui/ChatLog.cs @@ -212,7 +212,6 @@ internal sealed class ChatLog : IUiComponent { } foreach (var (_, (_, keybind)) in turnedOff) { - PluginLog.Log($"intercepting {keybind}"); if (!GameFunctions.Chat.KeybindsToIntercept.TryGetValue(keybind, out var info)) { continue; }