tpl/collections: Make IsSet WARNING less chatty
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 19 May 2017 18:13:55 +0000 (21:13 +0300)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 19 May 2017 18:14:37 +0000 (21:14 +0300)
Updates #3092

tpl/collections/collections.go

index 61459ee6bc4ea1ea9e087370cd4c0fcb7c049574..a6331edfe0cde49270cf35f307dff16269d5aeee 100644 (file)
@@ -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