From 864e2ec815661aeb4bc27e67f8d36d354f4ebf2a Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 3 May 2023 06:03:38 +0200 Subject: [PATCH] handlers.go: change msg log level --- handlers/handlers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handlers/handlers.go b/handlers/handlers.go index 9f7f68e..86b9999 100644 --- a/handlers/handlers.go +++ b/handlers/handlers.go @@ -38,7 +38,7 @@ func listAllTmpls() []string { files[i] = strings.TrimPrefix(v, tmplPath+"/") } - log.Info("returning files") + log.Debug("returning files") return files } @@ -95,7 +95,7 @@ func getTmpl(name string) *template.Template { liveMode := setting.IsLive() if liveMode { - log.Info("re-reading tmpls") // TODO: only re-read the tmpl in question. + log.Debug("re-reading tmpls") // TODO: only re-read the tmpl in question. tpl := template.New("")