diff --git a/changelog/v0.35.6/downgrade-log-level.yaml b/changelog/v0.35.6/downgrade-log-level.yaml new file mode 100644 index 000000000..850c62e36 --- /dev/null +++ b/changelog/v0.35.6/downgrade-log-level.yaml @@ -0,0 +1,6 @@ +changelog: +- type: FIX + issueLink: https://github.com/solo-io/solo-projects/issues/7530 + resolvesIssue: false + description: >- + Downgrade the level of message "respond open watch priority %d and index %d :%v with new version %q" to debug. diff --git a/pkg/api/v1/control-plane/cache/simple.go b/pkg/api/v1/control-plane/cache/simple.go index e1ee61610..529d62905 100644 --- a/pkg/api/v1/control-plane/cache/simple.go +++ b/pkg/api/v1/control-plane/cache/simple.go @@ -159,7 +159,7 @@ func (cache *snapshotCache) SetSnapshot(node string, snapshot Snapshot) { version := snapshot.GetResources(watch.Request.TypeUrl).Version if version != watch.Request.VersionInfo { if cache.log != nil { - cache.log.Infof("respond open watch priority %d and index %d :%v with new version %q", pi.Index, pi.Priority, watch.Request.ResourceNames, version) + cache.log.Debugf("respond open watch priority %d and index %d :%v with new version %q", pi.Index, pi.Priority, watch.Request.ResourceNames, version) } resources := snapshot.GetResources(watch.Request.TypeUrl).Items @@ -273,7 +273,7 @@ func (cache *snapshotCache) CreateWatch(request Request) (chan Response, func()) priority := info.watches.Add(ResponseWatch{Request: request, Response: value}) info.mu.Unlock() if cache.log != nil { - cache.log.Infof("open watch Priority Index %d and Element Index %d for %s%v from nodeID %q, version %q", + cache.log.Debugf("open watch Priority Index %d and Element Index %d for %s%v from nodeID %q, version %q", priority.Priority, priority.Index, request.TypeUrl, request.ResourceNames, nodeID, request.VersionInfo) } return value, cache.cancelWatch(nodeID, priority)