From ae256b9e1e4b4c527f63a55b29f7d20fb5fb6b91 Mon Sep 17 00:00:00 2001 From: Dane Strandboge <136023093+DStrand1@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:19:27 -0600 Subject: [PATCH] chore: change from info to debug --- plugins/inputs/prometheus/prometheus.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/inputs/prometheus/prometheus.go b/plugins/inputs/prometheus/prometheus.go index 5bd058a174401..191d27dd29a58 100644 --- a/plugins/inputs/prometheus/prometheus.go +++ b/plugins/inputs/prometheus/prometheus.go @@ -184,10 +184,10 @@ func (p *Prometheus) Init() error { } if p.KubernetesLabelSelector != "" { - p.Log.Infof("Using the label selector: %v", p.podLabelSelector) + p.Log.Debugf("Using the label selector: %v", p.podLabelSelector) } if p.KubernetesFieldSelector != "" { - p.Log.Infof("Using the field selector: %v", p.podFieldSelector) + p.Log.Debugf("Using the field selector: %v", p.podFieldSelector) } for k, vs := range p.NamespaceAnnotationPass {