diff --git a/cita-auth/src/dispatcher.rs b/cita-auth/src/dispatcher.rs index 965c7d251..887c056ce 100644 --- a/cita-auth/src/dispatcher.rs +++ b/cita-auth/src/dispatcher.rs @@ -123,7 +123,7 @@ impl Dispatcher { } pub fn add_tx_to_pool(&self, tx: &SignedTransaction) -> bool { - info!("add tx {} to pool", tx.get_tx_hash().lower_hex()); + trace!("add tx {} to pool", tx.get_tx_hash().lower_hex()); let txs_pool = &mut self.txs_pool.borrow_mut(); let success = txs_pool.enqueue(tx.clone()); if self.wal_enable { @@ -145,7 +145,7 @@ impl Dispatcher { let added: Vec = txs .into_iter() .filter(|tx| { - info!("add txs {} to pool", tx.get_tx_hash().lower_hex()); + trace!("add txs {} to pool", tx.get_tx_hash().lower_hex()); txs_pool.enqueue(tx.clone()) }) .collect();