fix: don't show troubleshooting lines in console

This commit is contained in:
goat 2021-09-17 23:50:27 +02:00
parent 8643c6ff1f
commit e29a312c52
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -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,