From eb00c621e086d39c93a9e40b642c423de211b934 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 12 Oct 2016 10:12:15 +0200 Subject: [PATCH] tpl: Remove the spamming template errors Fixes #2343 --- tpl/template.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tpl/template.go b/tpl/template.go index 431ea5a2..2039548b 100644 --- a/tpl/template.go +++ b/tpl/template.go @@ -127,7 +127,8 @@ func executeTemplate(context interface{}, w io.Writer, layouts ...string) { if templ != nil { if err := templ.Execute(w, context); err != nil { - jww.ERROR.Println(err, "in", layout) + // Printing the err is spammy, see https://github.com/golang/go/issues/17414 + helpers.DistinctErrorLog.Println(layout, "is an incomplete or empty template") } worked = true break -- 2.30.2