From 371cfc41c8aead0ccafcec5b635b276c17a45fb5 Mon Sep 17 00:00:00 2001 From: Ryan Mroczenski Date: Mon, 17 Jun 2024 18:50:01 -0500 Subject: [PATCH] #2 remove ex.tostring from appending to entry.text and spamming console. --- TweaksAndThings/Patches/ExpandedConsole_Patch.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/TweaksAndThings/Patches/ExpandedConsole_Patch.cs b/TweaksAndThings/Patches/ExpandedConsole_Patch.cs index 7036b6b..98fb6c4 100644 --- a/TweaksAndThings/Patches/ExpandedConsole_Patch.cs +++ b/TweaksAndThings/Patches/ExpandedConsole_Patch.cs @@ -102,7 +102,6 @@ public class ExpandedConsole_Add_Patch catch (Exception ex) { Log.Error(ex, ex.Message); - entry.Text += ex.ToString(); } }