diff --git a/cert/consul_source.go b/cert/consul_source.go index d71acc9d2..b83cc0d71 100644 --- a/cert/consul_source.go +++ b/cert/consul_source.go @@ -120,7 +120,7 @@ func watchKV(client *api.Client, key string, pemBlocks chan map[string][]byte) { } if !reflect.DeepEqual(value, lastValue) || index != lastIndex { - log.Printf("[INFO] cert: Certificate index changed to #%d", index) + log.Printf("[DEBUG] cert: Certificate index changed to #%d", index) pemBlocks <- value lastValue, lastIndex = value, index } diff --git a/registry/consul/kv.go b/registry/consul/kv.go index af2c13942..bc6eabaab 100644 --- a/registry/consul/kv.go +++ b/registry/consul/kv.go @@ -23,7 +23,7 @@ func watchKV(client *api.Client, path string, config chan string) { } if value != lastValue || index != lastIndex { - log.Printf("[INFO] consul: Manual config changed to #%d", index) + log.Printf("[DEBUG] consul: Manual config changed to #%d", index) config <- value lastValue, lastIndex = value, index } diff --git a/registry/consul/service.go b/registry/consul/service.go index d6addbbe2..2de1487f5 100644 --- a/registry/consul/service.go +++ b/registry/consul/service.go @@ -27,7 +27,7 @@ func watchServices(client *api.Client, tagPrefix string, status []string, config continue } - log.Printf("[INFO] consul: Health changed to #%d", meta.LastIndex) + log.Printf("[DEBUG] consul: Health changed to #%d", meta.LastIndex) config <- servicesConfig(client, passingServices(checks, status), tagPrefix) lastIndex = meta.LastIndex }