mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
hugolib: Improve shortcode error message
This commit is contained in:
parent
7d39990497
commit
58d9cbd31b
1 changed files with 1 additions and 2 deletions
|
@ -586,8 +586,7 @@ func renderShortcodeWithPage(tmpl tpl.Template, data *ShortcodeWithPage) string
|
|||
err := tmpl.Execute(buffer, data)
|
||||
isInnerShortcodeCache.RUnlock()
|
||||
if err != nil {
|
||||
data.Page.s.Log.ERROR.Println("error processing shortcode", tmpl.Name(), "\n ERR:", err)
|
||||
data.Page.s.Log.WARN.Println(data)
|
||||
data.Page.s.Log.ERROR.Printf("error processing shortcode %q for page %q: %s", tmpl.Name(), data.Page.Path(), err)
|
||||
}
|
||||
return buffer.String()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue