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.
This commit is contained in:
Cameron Moore 2017-05-18 13:23:03 -05:00 committed by Bjørn Erik Pedersen
parent 38661c17bb
commit 58d4c25e50

View file

@ -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