Add time units

This commit is contained in:
Michael Vines 2019-07-22 08:22:21 -07:00
parent 02c7b89a8f
commit 0d8f5379a0
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
1 changed files with 2 additions and 2 deletions

View File

@ -536,12 +536,12 @@ impl ReplayStage {
.map(|s| s.is_frozen()) .map(|s| s.is_frozen())
.unwrap_or(true) .unwrap_or(true)
{ {
info!("validator fork confirmed {} {}", *slot, duration); info!("validator fork confirmed {} {}ms", *slot, duration);
datapoint_warn!("validator-confirmation", ("duration_ms", duration, i64)); datapoint_warn!("validator-confirmation", ("duration_ms", duration, i64));
false false
} else { } else {
debug!( debug!(
"validator fork not confirmed {} {} {:?}", "validator fork not confirmed {} {}ms {:?}",
*slot, *slot,
duration, duration,
stake_lockouts.get(slot) stake_lockouts.get(slot)