summaryrefslogtreecommitdiffstats
path: root/docs/content/functions/errorf.md
blob: 9105ff840a4d17be7ff6fa37e97998d9307b2514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
title: errorf
linktitle: errorf
description: Evaluates a format string and logs it to ERROR.
date: 2017-09-30
publishdate: 2017-09-30
lastmod: 2017-09-30
categories: [functions]
menu:
  docs:
    parent: "functions"
keywords: [strings, log, error]
signature: ["errorf FORMAT INPUT"]
workson: []
hugoversion:
relatedfuncs: [printf]
deprecated: false
aliases: []
---

`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 }}
```