fix(ui): info logs were not highlighted with blue color

This commit is contained in:
ShadowArcanist 2026-03-06 10:05:52 +05:30
parent 11007771f0
commit 1f5395dd84

View file

@ -89,7 +89,7 @@
line.classList.add('log-warning');
} else if (/\b(debug|dbg|trace|verbose)\b/.test(content)) {
line.classList.add('log-debug');
} else if (/\b(info|inf|notice)\b/.test(content)) {
} else {
line.classList.add('log-info');
}
});