Skip to content

Commit d77e46f

Browse files
[Backport 7.64.x] Reduce some remote-tagger logs level (#35070)
Co-authored-by: Maxime Riaud <[email protected]>
1 parent fa1a8fc commit d77e46f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

comp/core/tagger/impl-remote/remote.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,8 @@ func (t *remoteTagger) run() {
508508
continue
509509
}
510510

511+
t.log.Info("tagger stream successfully initialized")
512+
511513
t.telemetryStore.Receives.Inc()
512514

513515
err = t.processResponse(response)
@@ -603,12 +605,10 @@ func (t *remoteTagger) startTaggerStream(maxElapsed time.Duration) error {
603605
Prefixes: prefixes,
604606
})
605607
if err != nil {
606-
t.log.Infof("unable to establish stream, will possibly retry: %s", err)
608+
t.log.Debug("unable to establish stream, will possibly retry: %s", err)
607609
return err
608610
}
609611

610-
t.log.Info("tagger stream established successfully")
611-
612612
return nil
613613
}, expBackoff)
614614
}

0 commit comments

Comments
 (0)