From: Bjørn Erik Pedersen Date: Fri, 19 May 2017 18:13:55 +0000 (+0300) Subject: tpl/collections: Make IsSet WARNING less chatty X-Git-Tag: v0.21~12 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=93c5774d;p=brevno-suite%2Fhugo tpl/collections: Make IsSet WARNING less chatty Updates #3092 --- diff --git a/tpl/collections/collections.go b/tpl/collections/collections.go index 61459ee6..a6331edf 100644 --- a/tpl/collections/collections.go +++ b/tpl/collections/collections.go @@ -25,6 +25,7 @@ import ( "github.com/spf13/cast" "github.com/spf13/hugo/deps" + "github.com/spf13/hugo/helpers" ) // New returns a new instance of the collections-namespaced template functions. @@ -371,7 +372,7 @@ func (ns *Namespace) IsSet(a interface{}, key interface{}) (bool, error) { return av.MapIndex(kv).IsValid(), nil } default: - ns.deps.Log.FEEDBACK.Printf("WARNING: calling IsSet with unsupported type %q (%T) will always return false.\n", av.Kind(), a) + helpers.DistinctFeedbackLog.Printf("WARNING: calling IsSet with unsupported type %q (%T) will always return false.\n", av.Kind(), a) } return false, nil