diff --git a/etcdserver/api/etcdhttp/metrics.go b/etcdserver/api/etcdhttp/metrics.go index 3a20d5a42af..cf9870e702a 100644 --- a/etcdserver/api/etcdhttp/metrics.go +++ b/etcdserver/api/etcdhttp/metrics.go @@ -62,7 +62,7 @@ func NewHealthHandler(lg *zap.Logger, hfunc func() Health) http.HandlerFunc { } w.WriteHeader(http.StatusOK) w.Write(d) - lg.Info("/health OK", zap.Int("status-code", http.StatusOK)) + lg.Debug("/health OK", zap.Int("status-code", http.StatusOK)) } } @@ -124,7 +124,7 @@ func checkHealth(lg *zap.Logger, srv etcdserver.ServerV2) Health { if h.Health == "true" { healthSuccess.Inc() - lg.Info("serving /health true") + lg.Debug("serving /health true") } else { healthFailed.Inc() }