mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: don't show troubleshooting lines in console
This commit is contained in:
parent
8643c6ff1f
commit
e29a312c52
1 changed files with 3 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue