Add trace logs.

This commit is contained in:
2026-02-02 18:01:53 -05:00
parent e5b91eaed8
commit 5af09485a3
6 changed files with 24 additions and 12 deletions

View File

@@ -204,7 +204,10 @@ SplitView {
Component.onCompleted: {
// Show logging is working.
Logger.debug("Debug console ready")
Logger.warn("Warnings show up too")
Logger.info("Info logs")
Logger.warn("Warning logs")
Logger.debug("Debug logs")
Logger.error("Error logs")
Logger.trace("Trace logs")
}
}