From 0d8f5379a0694960436e1081ec3b88e5fa5659d0 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 dd853e1790..e2801142ef 100644 --- a/core/src/replay_stage.rs +++ b/core/src/replay_stage.rs @@ -536,12 +536,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)