Improve logging (#2)

Reviewed-on: #2
This commit is contained in:
2025-07-24 15:30:33 +00:00
parent 71f044e6e0
commit bc80ca2c9c
22 changed files with 411 additions and 307 deletions

View File

@@ -1,7 +1,7 @@
package ui
import (
"epochsilicon/pkg/debug"
"epochsilicon/pkg/log"
"epochsilicon/pkg/paths"
"fyne.io/fyne/v2"
@@ -34,7 +34,7 @@ func createLogoContainer() fyne.CanvasObject {
// Load the application logo
logoResource, err := fyne.LoadResourceFromPath("Icon.png")
if err != nil {
debug.Printf("Warning: could not load logo: %v", err)
log.Debugf("Warning: could not load logo: %v", err)
}
// Create the logo image with a smaller fixed size since we have a header now