Reduce severity level of log in replay (#26893)
* Reduce active banks log severity from warn to trace
This commit is contained in:
parent
4b8f881af3
commit
457f9ef739
|
@ -2600,9 +2600,10 @@ impl ReplayStage {
|
||||||
) -> bool {
|
) -> bool {
|
||||||
let active_bank_slots = bank_forks.read().unwrap().active_bank_slots();
|
let active_bank_slots = bank_forks.read().unwrap().active_bank_slots();
|
||||||
let num_active_banks = active_bank_slots.len();
|
let num_active_banks = active_bank_slots.len();
|
||||||
warn!(
|
trace!(
|
||||||
"{} active bank(s) to replay: {:?}",
|
"{} active bank(s) to replay: {:?}",
|
||||||
num_active_banks, active_bank_slots
|
num_active_banks,
|
||||||
|
active_bank_slots
|
||||||
);
|
);
|
||||||
if num_active_banks > 0 {
|
if num_active_banks > 0 {
|
||||||
let replay_result_vec = if num_active_banks > 1 {
|
let replay_result_vec = if num_active_banks > 1 {
|
||||||
|
|
Loading…
Reference in New Issue