From 942f78b349f6bcdd2299a97708a5ed99a8730062 Mon Sep 17 00:00:00 2001 From: Wim Brand Date: Thu, 10 Jul 2025 15:25:04 +0200 Subject: [PATCH] Silence template parsing messages --- webcontroller/templates.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webcontroller/templates.go b/webcontroller/templates.go index 095af05..00a985a 100644 --- a/webcontroller/templates.go +++ b/webcontroller/templates.go @@ -146,7 +146,7 @@ func (tm *TemplateManager) ParseTemplates(silent bool) { templatePaths = append(templatePaths, path) if !silent { - log.Info("Template found: %s", path) + log.Debug("Template found: %s", path) } return nil }); err != nil { @@ -186,7 +186,7 @@ func (tm *TemplateManager) ParseTemplates(silent bool) { } if !silent { - log.Info("Template parsed: %s", path) + log.Debug("Template parsed: %s", path) } return nil