From 547a4c795275abc78fa06606a0b0e9a5b8664a0b Mon Sep 17 00:00:00 2001 From: ffilippopoulos Date: Wed, 29 Nov 2023 14:42:35 +0000 Subject: [PATCH] Lower log level for legacy clients requests It's not really a warning and can get really chatty on requests influx --- xds/snapshotter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xds/snapshotter.go b/xds/snapshotter.go index fec57a7..9cad8d1 100644 --- a/xds/snapshotter.go +++ b/xds/snapshotter.go @@ -255,7 +255,7 @@ func (s *Snapshotter) OnStreamRequest(id int64, r *discovery.DiscoveryRequest) e } // Legacy empty nodeID client if r.GetNode().GetId() == EmptyNodeID { - log.Logger.Warn("Client using empty string as node id", "client", stream.peerAddress) + log.Logger.Info("Client using empty string as node id", "client", stream.peerAddress) return nil }