From 6aa506e2d11c111b899a274fc04b05074c2ba7d8 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Mon, 13 Aug 2018 17:52:54 +0200 Subject: [PATCH] Less verbosity (#546) --- polkadot/transaction-pool/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot/transaction-pool/src/lib.rs b/polkadot/transaction-pool/src/lib.rs index 447d97d004..d76eae57cb 100644 --- a/polkadot/transaction-pool/src/lib.rs +++ b/polkadot/transaction-pool/src/lib.rs @@ -298,9 +298,9 @@ impl<'a, A> txpool::Verifier for Verifier<'a, A> where let sender = inner.as_ref().map(|x| x.signed.clone()); if encoded_size < 1024 { - info!(target: "transaction-pool", "Transaction verified: {} => {:?}", hash, uxt); + debug!(target: "transaction-pool", "Transaction verified: {} => {:?}", hash, uxt); } else { - info!(target: "transaction-pool", "Transaction verified: {} ({} bytes is too large to display)", hash, encoded_size); + debug!(target: "transaction-pool", "Transaction verified: {} ({} bytes is too large to display)", hash, encoded_size); } Ok(VerifiedTransaction {