Using a custom logger with colors and timestamp instead of console.xxx

This commit is contained in:
quadbyte 2025-08-16 19:31:22 -04:00
parent 4794477be3
commit e800bc161d
34 changed files with 278 additions and 236 deletions

View file

@ -165,7 +165,7 @@ QtObject {
})
}
} catch (e) {
console.error("[Notifications] Failed to load history:", e)
Logger.error("Notifications", "Failed to load history:", e)
}
}
@ -190,7 +190,7 @@ QtObject {
historyFileView.writeAdapter()
})
} catch (e) {
console.error("[Notifications] Failed to save history:", e)
Logger.error("Notifications", "Failed to save history:", e)
}
}