Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Reduce severity level of log in replay (#26893)
Browse files Browse the repository at this point in the history
* Reduce active banks log severity from warn to trace
  • Loading branch information
bw-solana authored Aug 3, 2022
1 parent 4b8f881 commit 457f9ef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/src/replay_stage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 457f9ef

Please sign in to comment.