From 87946eafd536eda4c7158aef59d367d5fbc10ef3 Mon Sep 17 00:00:00 2001 From: Stephen Akridge Date: Thu, 14 Jun 2018 15:40:20 -0700 Subject: [PATCH] Lower processing transaction message to debug by default --- src/bank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bank.rs b/src/bank.rs index b1b6838b8..73c9740ef 100644 --- a/src/bank.rs +++ b/src/bank.rs @@ -293,7 +293,7 @@ impl Bank { /// Process a batch of transactions. It runs all debits first to filter out any /// transactions that can't be processed in parallel deterministically. pub fn process_transactions(&self, txs: Vec) -> Vec> { - info!("processing Transactions {}", txs.len()); + debug!("processing Transactions {}", txs.len()); let results: Vec<_> = txs.into_par_iter() .map(|tx| self.apply_debits(&tx).map(|_| tx)) .collect(); // Calling collect() here forces all debits to complete before moving on.