From c4313bcfc806602370735ed08585e64307612cff Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Thu, 20 Mar 2025 19:26:53 +0800 Subject: [PATCH] core: downgrade the log level --- core/blockchain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/blockchain.go b/core/blockchain.go index a316e73155..e89e02232c 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -1385,7 +1385,7 @@ func (bc *BlockChain) InsertReceiptChain(blockChain types.Blocks, receiptChain [ if stats.ignored > 0 { context = append(context, []interface{}{"ignored", stats.ignored}...) } - log.Info("Imported new block receipts", context...) + log.Debug("Imported new block receipts", context...) return 0, nil }