handlers.go: change msg log level
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
leo 2023-05-03 06:03:38 +02:00
parent 672132a109
commit 864e2ec815
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

@ -38,7 +38,7 @@ func listAllTmpls() []string {
files[i] = strings.TrimPrefix(v, tmplPath+"/") files[i] = strings.TrimPrefix(v, tmplPath+"/")
} }
log.Info("returning files") log.Debug("returning files")
return files return files
} }
@ -95,7 +95,7 @@ func getTmpl(name string) *template.Template {
liveMode := setting.IsLive() liveMode := setting.IsLive()
if liveMode { 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("") tpl := template.New("")