diff --git a/polkadot/transaction-pool/src/lib.rs b/polkadot/transaction-pool/src/lib.rs index 265f72ba9903a..946ea521865fe 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 { diff --git a/substrate/extrinsic-pool/src/listener.rs b/substrate/extrinsic-pool/src/listener.rs index 6bf110e55f977..5b8f4106e688c 100644 --- a/substrate/extrinsic-pool/src/listener.rs +++ b/substrate/extrinsic-pool/src/listener.rs @@ -76,15 +76,15 @@ impl txpool::Listener for Listener where } fn rejected(&mut self, tx: &Arc, reason: &txpool::ErrorKind) { - warn!("Extrinsic rejected ({}): {:?}", reason, tx); + warn!(target: "extrinsic-pool", "Extrinsic rejected ({}): {:?}", reason, tx); } fn invalid(&mut self, tx: &Arc) { - warn!("Extrinsic invalid: {:?}", tx); + warn!(target: "extrinsic-pool", "Extrinsic invalid: {:?}", tx); } fn canceled(&mut self, tx: &Arc) { - warn!("Extrinsic canceled: {:?}", tx); + debug!(target: "extrinsic-pool", "Extrinsic canceled: {:?}", tx); } fn mined(&mut self, tx: &Arc) {