From e61657cb5ccdc6209cb49503e9520e89aff95870 Mon Sep 17 00:00:00 2001 From: Gav <gavin@parity.io> Date: Fri, 10 Aug 2018 18:16:53 +0200 Subject: [PATCH] Less verbosity --- 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 447d97d0045..d76eae57cbd 100644 --- a/polkadot/transaction-pool/src/lib.rs +++ b/polkadot/transaction-pool/src/lib.rs @@ -298,9 +298,9 @@ impl<'a, A> txpool::Verifier<UncheckedExtrinsic> 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 { -- GitLab