diff --git a/core/src/progress_map.rs b/core/src/progress_map.rs index 00855ba02f..549616d88f 100644 --- a/core/src/progress_map.rs +++ b/core/src/progress_map.rs @@ -144,7 +144,7 @@ impl ReplaySlotStats { ); for (pubkey, time) in per_pubkey_timings.iter().take(5) { - datapoint_info!( + datapoint_trace!( "per_program_timings", ("slot", slot as i64, i64), ("pubkey", pubkey.to_string(), String), @@ -167,7 +167,7 @@ impl ReplaySlotStats { ("accumulated_units", total_units, i64), ("count", total_count, i64), ("errored_units", total_errored_units, i64), - ("count", total_errored_count, i64) + ("errored_count", total_errored_count, i64) ); } }