mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
parent
8ddd95e361
commit
eb00c621e0
1 changed files with 2 additions and 1 deletions
|
@ -127,7 +127,8 @@ func executeTemplate(context interface{}, w io.Writer, layouts ...string) {
|
||||||
|
|
||||||
if templ != nil {
|
if templ != nil {
|
||||||
if err := templ.Execute(w, context); err != 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
|
worked = true
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue