From db48e12270d22f2b86ba27085727a5d1363b9e0c Mon Sep 17 00:00:00 2001 From: terence tsao Date: Mon, 12 Oct 2020 07:41:59 -0700 Subject: [PATCH] Update "Requesting parent block..." to debug level (#7508) Co-authored-by: Nishant Das --- beacon-chain/sync/pending_blocks_queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon-chain/sync/pending_blocks_queue.go b/beacon-chain/sync/pending_blocks_queue.go index 5b3440048..773781da7 100644 --- a/beacon-chain/sync/pending_blocks_queue.go +++ b/beacon-chain/sync/pending_blocks_queue.go @@ -113,7 +113,7 @@ func (s *Service) processPendingBlocks(ctx context.Context) error { log.WithFields(logrus.Fields{ "currentSlot": b.Block.Slot, "parentRoot": hex.EncodeToString(bytesutil.Trunc(b.Block.ParentRoot)), - }).Info("Requesting parent block") + }).Debug("Requesting parent block") parentRoots = append(parentRoots, bytesutil.ToBytes32(b.Block.ParentRoot)) span.End()