From cad12e5a415a47df3a77958e145d125a28c21e76 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Tue, 7 Jan 2025 21:19:27 -0500 Subject: [PATCH] Lower verbosity for topologycache messages Signed-off-by: Davanum Srinivas --- .../src/k8s.io/endpointslice/topologycache/topologycache.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/staging/src/k8s.io/endpointslice/topologycache/topologycache.go b/staging/src/k8s.io/endpointslice/topologycache/topologycache.go index e8253ecc194..eb8ce20e721 100644 --- a/staging/src/k8s.io/endpointslice/topologycache/topologycache.go +++ b/staging/src/k8s.io/endpointslice/topologycache/topologycache.go @@ -214,11 +214,11 @@ func (t *TopologyCache) SetNodes(logger klog.Logger, nodes []*v1.Node) { for _, node := range nodes { if hasExcludedLabels(node.Labels) { - logger.V(2).Info("Ignoring node because it has an excluded label", "node", klog.KObj(node)) + logger.V(6).Info("Ignoring node because it has an excluded label", "node", klog.KObj(node)) continue } if !isNodeReady(node) { - logger.V(2).Info("Ignoring node because it is not ready", "node", klog.KObj(node)) + logger.V(6).Info("Ignoring node because it is not ready", "node", klog.KObj(node)) continue }