Skip to content

Commit 76d59d4

Browse files
authored
Merge pull request #2617 from CortexFoundation/dev
trace level
2 parents 18b36d5 + e560dbe commit 76d59d4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ctxc/handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ func (pm *ProtocolManager) BroadcastTransactions(txs types.Transactions) {
11431143
peer.AsyncSendTransactions(hashes)
11441144
}
11451145
}
1146-
log.Debug("Transaction broadcast", "txs", len(txs)-largeTxs, "largetxs", largeTxs,
1146+
log.Trace("Transaction broadcast", "txs", len(txs)-largeTxs, "largetxs", largeTxs,
11471147
"announce packs", annoPeers, "announced hashes", annoCount,
11481148
"tx packs", directPeers, "broadcast txs", directCount)
11491149
}

ctxc/peer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ func (p *peer) RequestReceipts(hashes []common.Hash) error {
383383

384384
// RequestTxs fetches a batch of transactions from a remote node.
385385
func (p *peer) RequestTxs(hashes []common.Hash) error {
386-
p.Log().Debug("Fetching batch of transactions", "count", len(hashes))
386+
p.Log().Trace("Fetching batch of transactions", "count", len(hashes))
387387
return p2p.Send(p.rw, ctxc.GetPooledTransactionsMsg, hashes)
388388
}
389389

0 commit comments

Comments
 (0)