1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00
Files
gohugoio-hugo/docs/content/functions/errorf.md
Brendan Roy 4fc67fe44a tpl: Add errorf template function
Add template function that will build a string from the given format
string and arguments, then log it to ERROR. This has an intended
side-effect of causing the build to fail, when executed.

Resolves #3817
2017-10-03 07:59:51 +02:00

553 B

title, linktitle, description, date, publishdate, lastmod, categories, menu, keywords, signature, workson, hugoversion, relatedfuncs, deprecated, aliases
title linktitle description date publishdate lastmod categories menu keywords signature workson hugoversion relatedfuncs deprecated aliases
errorf errorf Evaluates a format string and logs it to ERROR. 2017-09-30 2017-09-30 2017-09-30
functions
docs
parent
functions
strings
log
error
errorf FORMAT INPUT
printf
false

errorf will evaluate a format string, then output the result to the ERROR log. This will also cause the build to fail.

{{ errorf "Something went horribly wrong! %s" err }}