From ee81e667d3e0b4ab7defbdea7e51b60b782343dc Mon Sep 17 00:00:00 2001 From: Leo Date: Tue, 12 Oct 2021 14:50:22 +0200 Subject: [PATCH] node/pkg/processor: kill "received observation by unknown guardian" Log message keeps causing confusion even at WARN level (who would've thought :D) Change-Id: I3dc7d0ed054f1531a69953ebccee053f58f81ad5 --- node/pkg/processor/observation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/pkg/processor/observation.go b/node/pkg/processor/observation.go index 64d746e81..c2b690997 100644 --- a/node/pkg/processor/observation.go +++ b/node/pkg/processor/observation.go @@ -129,7 +129,7 @@ func (p *Processor) handleObservation(ctx context.Context, m *gossipv1.SignedObs // who have the outdated guardian set, we'll just wait for the message to be retransmitted eventually. _, ok := gs.KeyIndex(their_addr) if !ok { - p.logger.Warn("received observation by unknown guardian - is our guardian set outdated?", + p.logger.Debug("received observation by unknown guardian - is our guardian set outdated?", zap.String("digest", hash), zap.String("their_addr", their_addr.Hex()), zap.Uint32("index", gs.Index),