fmt.Erroridf
Syntax
fmt.Erroridf ID FORMAT [INPUT]
Returns
string
Alias
erroridf
Go的fmt包 的文档描述了格式字符串的结构和内容。
与 errorf
函数一样,erroridf
函数会评估格式字符串,将结果打印到错误日志中,然后停止构建。Hugo 只会打印每个唯一的错误消息一次,以避免日志中出现重复错误。
与 errorf
函数不同,你可以通过将消息ID添加到站点配置的 ignoreErrors
数组中来忽略由 erroridf
函数记录的错误。
以下模板代码:
{{ erroridf "error-42" "You should consider fixing this." }}
将产生以下控制台日志:
ERROR 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 = ["error-42"]
要忽略此消息:
hugo.
ignoreErrors:
- error-42
ignoreErrors = ['error-42']
{
"ignoreErrors": [
"error-42"
]
}