From 47bcd0be34acaf6737534179408bce391e963393 Mon Sep 17 00:00:00 2001 From: Devin Bidwell Date: Wed, 24 Dec 2025 12:10:11 -0700 Subject: [PATCH] Cleaned up BepInEx logging --- csharp_mod/Formatter.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/csharp_mod/Formatter.cs b/csharp_mod/Formatter.cs index c07af8d..a7a0532 100644 --- a/csharp_mod/Formatter.cs +++ b/csharp_mod/Formatter.cs @@ -37,7 +37,6 @@ public class SlangFormatter : ICodeFormatter public SlangFormatter() : base() { - L.Info("Slang Constructor"); OnCodeChanged += HandleCodeChanged; OnCaretMoved += UpdateIc10Formatter; } @@ -198,7 +197,6 @@ public class SlangFormatter : ICodeFormatter var tab = Editor.ParentTab; if (Ic10Editor == null) { - L.Info("Ic10Editor was null"); iC10CodeFormatter = new IC10CodeFormatter(); Ic10Editor = new Editor(Editor.KeyHandler); Ic10Editor.IsReadOnly = true; @@ -207,7 +205,6 @@ public class SlangFormatter : ICodeFormatter if (tab.Editors.Count < 2) { - L.Info("Adding new editor tab"); tab.AddEditor(Ic10Editor); }