From e560dbebe7a53a4164ea5a7f494a8aee9a4574b7 Mon Sep 17 00:00:00 2001 From: ucwong Date: Wed, 7 Jan 2026 19:23:40 +0800 Subject: [PATCH] trace level --- ctxc/handler.go | 2 +- ctxc/peer.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ctxc/handler.go b/ctxc/handler.go index 12eb8bd560..2fb3a680ed 100644 --- a/ctxc/handler.go +++ b/ctxc/handler.go @@ -1143,7 +1143,7 @@ func (pm *ProtocolManager) BroadcastTransactions(txs types.Transactions) { peer.AsyncSendTransactions(hashes) } } - log.Debug("Transaction broadcast", "txs", len(txs)-largeTxs, "largetxs", largeTxs, + log.Trace("Transaction broadcast", "txs", len(txs)-largeTxs, "largetxs", largeTxs, "announce packs", annoPeers, "announced hashes", annoCount, "tx packs", directPeers, "broadcast txs", directCount) } diff --git a/ctxc/peer.go b/ctxc/peer.go index d3fac1f5b6..ffcc5f6339 100644 --- a/ctxc/peer.go +++ b/ctxc/peer.go @@ -383,7 +383,7 @@ func (p *peer) RequestReceipts(hashes []common.Hash) error { // RequestTxs fetches a batch of transactions from a remote node. func (p *peer) RequestTxs(hashes []common.Hash) error { - p.Log().Debug("Fetching batch of transactions", "count", len(hashes)) + p.Log().Trace("Fetching batch of transactions", "count", len(hashes)) return p2p.Send(p.rw, ctxc.GetPooledTransactionsMsg, hashes) }