Only continue log level if line starts with whitespace; reintroduce exception detection

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad
2025-12-05 12:35:21 +00:00
parent 92738feeba
commit c018b60816
5 changed files with 13 additions and 16 deletions

View File

@@ -287,10 +287,7 @@ void OtherLogsPage::reload()
if (!m_instance) {
level = MessageLevel::fromLauncherLine(lineTemp);
} else {
level = LogParser::guessLevel(line);
if (level == MessageLevel::Unknown)
level = last;
level = LogParser::guessLevel(line, last);
}
last = level;