summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/fmt/Erroridf.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/fmt/Erroridf.md')
-rw-r--r--docs/content/en/functions/fmt/Erroridf.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/content/en/functions/fmt/Erroridf.md b/docs/content/en/functions/fmt/Erroridf.md
index 9884f4935..f442f09bf 100644
--- a/docs/content/en/functions/fmt/Erroridf.md
+++ b/docs/content/en/functions/fmt/Erroridf.md
@@ -1,6 +1,6 @@
---
title: fmt.Erroridf
-description: Log a suppressable ERROR from a template.
+description: Log a suppressible ERROR from a template.
categories: []
keywords: []
action:
@@ -8,6 +8,7 @@ action:
related:
- functions/fmt/Errorf
- functions/fmt/Warnf
+ - functions/fmt/Warnidf
returnType: string
signatures: ['fmt.Erroridf ID FORMAT [INPUT]']
aliases: [/functions/erroridf]
@@ -15,7 +16,7 @@ aliases: [/functions/erroridf]
{{% include "functions/fmt/_common/fmt-layout.md" %}}
-The `erroridf` function evaluates the format string, then prints the result to the ERROR log and fails the build. Unlike the [`errorf`] function, you may suppress errors logged by the `erroridf` function by adding the message ID to the `ignoreErrors` array in your site configuration.
+The `erroridf` function evaluates the format string, then prints the result to the ERROR log and fails the build. Unlike the [`errorf`] function, you may suppress errors logged by the `erroridf` function by adding the message ID to the `ignoreLogs` array in your site configuration.
This template code:
@@ -28,13 +29,13 @@ Produces this console log:
```text
ERROR You should consider fixing this.
You can suppress this error by adding the following to your site configuration:
-ignoreErrors = ['error-42']
+ignoreLogs = ['error-42']
```
To suppress this message:
{{< code-toggle file=hugo >}}
-ignoreErrors = ["error-42"]
+ignoreLogs = ["error-42"]
{{< /code-toggle >}}
-[`errorf`]: /functions/fmt/errorf
+[`errorf`]: /functions/fmt/errorf/