From 906d18a709e2d0d543f47691782edb13cb467ce3 Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Fri, 3 Aug 2018 17:00:18 -0700 Subject: [PATCH] move VOTE to trace, info too verbose --- src/bank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bank.rs b/src/bank.rs index 65c166229a..01a55eaa3e 100644 --- a/src/bank.rs +++ b/src/bank.rs @@ -280,7 +280,7 @@ impl Bank { let _ = self.apply_signature(tx.from, *tx_sig); } Instruction::NewVote(_vote) => { - info!("GOT VOTE! last_id={:?}", &tx.last_id.as_ref()[..8]); + trace!("GOT VOTE! last_id={:?}", &tx.last_id.as_ref()[..8]); // TODO: record the vote in the stake table... } }