mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-14 16:14:42 -04:00
parent
e1875742e2
commit
9c4413dd9e
@ -31,3 +31,22 @@ Both functions return an empty string, so the messages are only printed to the c
|
|||||||
```
|
```
|
||||||
|
|
||||||
Note that `errorf` and `warnf` support all the formatting verbs of the [fmt](https://golang.org/pkg/fmt/) package.
|
Note that `errorf` and `warnf` support all the formatting verbs of the [fmt](https://golang.org/pkg/fmt/) package.
|
||||||
|
|
||||||
|
## Suppress errors
|
||||||
|
|
||||||
|
Some times it may make sense to let the user suppress an ERROR and make the build succeed.
|
||||||
|
|
||||||
|
You can do this by using the `erroridf` function. This functions takes an error ID as the first arument.
|
||||||
|
|
||||||
|
|
||||||
|
``
|
||||||
|
{{ erroridf "my-custom-error" "You should consider fixing this."}}
|
||||||
|
```
|
||||||
|
|
||||||
|
This will produce:
|
||||||
|
|
||||||
|
```
|
||||||
|
ERROR 2021/06/07 17:47:38 You should consider fixing this.
|
||||||
|
If you feel that this should not be logged as an ERROR, you can ignore it by adding this to your site config:
|
||||||
|
ignoreErrors = ["my-custom-error"]
|
||||||
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user