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; }