Use LogView to implement level highlighting for other logs

Signed-off-by: Yihe Li <winmikedows@hotmail.com>
This commit is contained in:
Yihe Li
2025-04-15 03:42:28 +08:00
parent 41a790d258
commit 4ac6a0629b
6 changed files with 158 additions and 95 deletions

View File

@@ -46,7 +46,7 @@ class InstancePageProvider : protected QObject, public BasePageProvider {
values.append(new InstanceSettingsPage(onesix));
auto logMatcher = inst->getLogFileMatcher();
if (logMatcher) {
values.append(new OtherLogsPage(inst->getLogFileRoot(), logMatcher));
values.append(new OtherLogsPage(inst, logMatcher));
}
return values;
}