From 457f9ef739fcc64df30eb201a39051cb786d1575 Mon Sep 17 00:00:00 2001 From: Brennan Watt Date: Wed, 3 Aug 2022 13:51:16 -0700 Subject: [PATCH] Reduce severity level of log in replay (#26893) * Reduce active banks log severity from warn to trace --- core/src/replay_stage.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/src/replay_stage.rs b/core/src/replay_stage.rs index d1f408b1cdaf63..591be79f62b97b 100644 --- a/core/src/replay_stage.rs +++ b/core/src/replay_stage.rs @@ -2600,9 +2600,10 @@ impl ReplayStage { ) -> bool { let active_bank_slots = bank_forks.read().unwrap().active_bank_slots(); let num_active_banks = active_bank_slots.len(); - warn!( + trace!( "{} active bank(s) to replay: {:?}", - num_active_banks, active_bank_slots + num_active_banks, + active_bank_slots ); if num_active_banks > 0 { let replay_result_vec = if num_active_banks > 1 {