From ccad5d5aafe00014e6bdd151dae1e3b22173cb8e Mon Sep 17 00:00:00 2001 From: anatoly yakovenko Date: Wed, 19 Feb 2020 14:25:49 -0800 Subject: [PATCH] change warnings to infos (#8322) --- core/src/replay_stage.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/replay_stage.rs b/core/src/replay_stage.rs index 81d9ec8962..d316cb171f 100644 --- a/core/src/replay_stage.rs +++ b/core/src/replay_stage.rs @@ -814,13 +814,13 @@ impl ReplayStage { stats.weight = bank_weight; stats.fork_weight = stats.weight + parent_weight; - datapoint_warn!( + datapoint_info!( "bank_weight", ("slot", bank.slot(), i64), // u128 too large for influx, convert to hex ("weight", format!("{:X}", stats.weight), String), ); - warn!( + info!( "{} slot_weight: {} {} {} {}", my_pubkey, stats.slot, @@ -937,7 +937,7 @@ impl ReplayStage { if bank.is_frozen() && tower.is_slot_confirmed(*slot, stake_lockouts, total_staked) { info!("validator fork confirmed {} {}ms", *slot, duration); - datapoint_warn!("validator-confirmation", ("duration_ms", duration, i64)); + datapoint_info!("validator-confirmation", ("duration_ms", duration, i64)); confirmed_forks.push(*slot); } else { debug!(