From 58d4c25e50b9399bd81e43254ddae5949778e577 Mon Sep 17 00:00:00 2001 From: Cameron Moore Date: Thu, 18 May 2017 13:23:03 -0500 Subject: [PATCH] tpl/collections: Use Feedback log instead of Error in IsSet Using the Error log will cause Hugo to exit with an error, which could break site build workflows. --- tpl/collections/collections.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tpl/collections/collections.go b/tpl/collections/collections.go index f2816e4f1..61459ee6b 100644 --- a/tpl/collections/collections.go +++ b/tpl/collections/collections.go @@ -371,7 +371,7 @@ func (ns *Namespace) IsSet(a interface{}, key interface{}) (bool, error) { return av.MapIndex(kv).IsValid(), nil } default: - ns.deps.Log.ERROR.Printf("calling IsSet with unsupported type %T will always return false", a) + ns.deps.Log.FEEDBACK.Printf("WARNING: calling IsSet with unsupported type %q (%T) will always return false.\n", av.Kind(), a) } return false, nil