1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-30 17:42:06 -04:00

logger: add a dedicated QML logging Singleton

- adds log.info/error/debug/warn/fatal
- adds ability to write logs to any file
- add CLI options in addition to env to set log levels
This commit is contained in:
bbedward
2026-04-29 15:40:44 -04:00
parent 3b96c6ab22
commit f76724f7cd
84 changed files with 1764 additions and 1297 deletions

View File

@@ -6,10 +6,12 @@ import Quickshell
import Quickshell.Io
import Quickshell.Services.Notifications
import qs.Common
import qs.Services
import "../Common/markdown2html.js" as Markdown2Html
Singleton {
id: root
readonly property var log: Log.scoped("NotificationService")
readonly property list<NotifWrapper> notifications: []
readonly property list<NotifWrapper> allWrappers: []
@@ -153,7 +155,7 @@ Singleton {
historyAdapter.notifications = historyList;
historyFileView.writeAdapter();
} catch (e) {
console.warn("NotificationService: save history failed:", e);
log.warn("save history failed:", e);
}
}
@@ -203,7 +205,7 @@ Singleton {
if ((maxAgeMs > 0 && loaded.length !== (historyAdapter.notifications || []).length) || needsRewrite)
saveHistory();
} catch (e) {
console.warn("NotificationService: load history failed:", e);
log.warn("load history failed:", e);
historyLoaded = true;
}
}
@@ -403,7 +405,7 @@ Singleton {
try {
return new RegExp(pattern, "i").test(value);
} catch (e) {
console.warn("NotificationService: invalid notification rule regex:", pattern);
log.warn("invalid notification rule regex:", pattern);
return false;
}
}