Reduce severity level of log in replay (#26893)

* Reduce active banks log severity from warn to trace
This commit is contained in:
Brennan Watt 2022-08-03 13:51:16 -07:00 committed by GitHub
parent 4b8f881af3
commit 457f9ef739
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -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 {