Remove debug logs

This commit is contained in:
Infi
2024-06-30 09:29:11 +02:00
parent f76f0e91d0
commit 8bef8ec050
3 changed files with 1 additions and 12 deletions
-3
View File
@@ -347,7 +347,6 @@ internal sealed unsafe class Chat : IDisposable
{
// FIXME: this whole system sucks
// FIXME v2: I hate everything about this, but it works
Plugin.Framework.RunOnTick(() =>
{
string? input = null;
@@ -361,8 +360,6 @@ internal sealed unsafe class Chat : IDisposable
if (c != '\0' && !char.IsControl(c))
input = c.ToString();
Plugin.Log.Information($"Input was {c}");
try
{
Activated?.Invoke(new ChatActivatedArgs(new ChannelSwitchInfo(null)) { Input = input, });