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 {