From 3448842c0cc8a5a110fe53d7d4cb3b90af1f6907 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 22 Jul 2019 08:22:21 -0700 Subject: [PATCH] Add time units --- core/src/replay_stage.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/replay_stage.rs b/core/src/replay_stage.rs index f688601154..8128829987 100644 --- a/core/src/replay_stage.rs +++ b/core/src/replay_stage.rs @@ -528,12 +528,12 @@ impl ReplayStage { .map(|s| s.is_frozen()) .unwrap_or(true) { - info!("validator fork confirmed {} {}", *slot, duration); + info!("validator fork confirmed {} {}ms", *slot, duration); datapoint_warn!("validator-confirmation", ("duration_ms", duration, i64)); false } else { debug!( - "validator fork not confirmed {} {} {:?}", + "validator fork not confirmed {} {}ms {:?}", *slot, duration, stake_lockouts.get(slot)