diff --git a/bin/withdrawal-finalizer/src/main.rs b/bin/withdrawal-finalizer/src/main.rs index 49273c6f..1fb60c60 100644 --- a/bin/withdrawal-finalizer/src/main.rs +++ b/bin/withdrawal-finalizer/src/main.rs @@ -298,7 +298,5 @@ async fn main() -> Result<()> { } } - vlog::info!("Shutting down fianalizer"); - Ok(()) } diff --git a/withdrawals-meterer/src/lib.rs b/withdrawals-meterer/src/lib.rs index a2c3a832..54e2b642 100644 --- a/withdrawals-meterer/src/lib.rs +++ b/withdrawals-meterer/src/lib.rs @@ -45,16 +45,10 @@ impl WithdrawalsMeter { /// Given a set of withdrawal ids meter all of them to a metric /// with a given name. pub async fn meter_withdrawals_storage(&mut self, ids: &[i64]) -> Result<(), storage::Error> { - vlog::info!("meter_withdrawals_storage start"); - let withdrawals = storage::get_withdrawals(&self.pool, ids).await?; - vlog::info!("meter_withdrawals_storage continued"); - self.meter_withdrawals(&withdrawals).await?; - vlog::info!("meter_withdrawals_storage end"); - Ok(()) }