feat: enhance log filtering by adding support for debug level and updating log hierarchy #4293

This commit is contained in:
Tunglies
2025-08-06 20:49:54 +08:00
parent 7b976c16eb
commit a9cfb2cfaa
4 changed files with 36 additions and 11 deletions

View File

@@ -30,7 +30,7 @@ const LOG_LEVEL_HIERARCHY = {
info: ["info", "warning", "error"],
warning: ["warning", "error"],
error: ["error"],
debug: ["debug"],
debug: ["info", "warning", "error", "debug"],
};
const LogPage = () => {