From 0eb51184593e9df74bb894a4752394a2bb8a6bc5 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Sun, 1 Feb 2026 03:48:40 +0000 Subject: [PATCH] Reduce log spam on svg load Now that it's working correctly --- html/html.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/html.go b/html/html.go index 47116935..884aadb3 100644 --- a/html/html.go +++ b/html/html.go @@ -147,7 +147,7 @@ func addSVGTemplates(fsys fs.FS, templ *template.Template) error { if err != nil { return fmt.Errorf("Failed to add svg '%s' to embedded template: %v", svg, err) } - log.Debug().Str("name", svg_name).Msg("add svg template") + //log.Debug().Str("name", svg_name).Msg("add svg template") } return nil }