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) }