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