From a87e6fbdead52137d8030c3cc9ce2df801d5e61b Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Mon, 17 Mar 2014 00:23:04 -0500 Subject: [PATCH] Change rate limit debug messages to trace level. --- mempool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mempool.go b/mempool.go index 954047e9..86828065 100644 --- a/mempool.go +++ b/mempool.go @@ -890,7 +890,7 @@ func (mp *txMemPool) maybeAcceptTransaction(tx *btcutil.Tx, isOrphan *bool, isNe oldTotal := mp.pennyTotal mp.pennyTotal += float64(tx.MsgTx().SerializeSize()) - txmpLog.Debugf("rate limit: curTotal %v, nextTotal: %v, "+ + txmpLog.Tracef("rate limit: curTotal %v, nextTotal: %v, "+ "limit %v", oldTotal, mp.pennyTotal, cfg.FreeTxRelayLimit*10*1000) }