mirror of https://github.com/linkerd/linkerd2.git
switched not actionable and are alarming log messages to Debugf from Errorf (#10388)
issue: #10380 Signed-off-by: siddharth pal <siddharthshubhampal@gmail.com>
This commit is contained in:
parent
857f882721
commit
e55b91c320
|
@ -244,7 +244,7 @@ func (et *endpointTranslator) NoEndpoints(exists bool) {
|
|||
|
||||
et.log.Debugf("Sending destination no endpoints: %+v", u)
|
||||
if err := et.stream.Send(u); err != nil {
|
||||
et.log.Errorf("Failed to send address update: %s", err)
|
||||
et.log.Debugf("Failed to send address update: %s", err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -313,7 +313,7 @@ func (et *endpointTranslator) sendClientAdd(set watcher.AddressSet) {
|
|||
|
||||
et.log.Debugf("Sending destination add: %+v", add)
|
||||
if err := et.stream.Send(add); err != nil {
|
||||
et.log.Errorf("Failed to send address update: %s", err)
|
||||
et.log.Debugf("Failed to send address update: %s", err)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -336,7 +336,7 @@ func (et *endpointTranslator) sendClientRemove(set watcher.AddressSet) {
|
|||
|
||||
et.log.Debugf("Sending destination remove: %+v", remove)
|
||||
if err := et.stream.Send(remove); err != nil {
|
||||
et.log.Errorf("Failed to send address update: %s", err)
|
||||
et.log.Debugf("Failed to send address update: %s", err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue