From e29a312c52683f8b56eff6b302dab4116663e7d1 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Fri, 17 Sep 2021 23:50:27 +0200 Subject: [PATCH] fix: don't show troubleshooting lines in console --- Dalamud/Interface/Internal/Windows/ConsoleWindow.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs b/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs index c712c55ff..e5d82346f 100644 --- a/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs +++ b/Dalamud/Interface/Internal/Windows/ConsoleWindow.cs @@ -416,6 +416,9 @@ namespace Dalamud.Interface.Internal.Windows private void AddAndFilter(string line, LogEventLevel level, DateTimeOffset offset, bool isMultiline) { + if (line.StartsWith("TROUBLESHOOTING:") || line.StartsWith("EXCEPTION:")) + return; + var entry = new LogEntry { IsMultiline = isMultiline,