Skip to content

Commit

Permalink
better looking messages
Browse files Browse the repository at this point in the history
  • Loading branch information
bwsw committed Nov 29, 2024
1 parent bf41e14 commit 4a801cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde_json = "1.0"
thiserror = "1.0"

[workspace.package]
version = "0.4.2"
version = "0.4.3"
edition = "2021"
authors = ["Ivan Kudriavtsev <[email protected]>"]
description = "Savant Rust core functions library"
Expand Down
2 changes: 1 addition & 1 deletion savant_core/src/pipeline/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ impl StageLatencyStat {
self.stage_name,
);
info!(
" min: {:>8} micros, max: {:>8} micros, avg: {:>8} micros, count: {:>8}",
" min: {:>8} micros, max: {:>8} micros, avg: {:>8} micros, count: {:>8}",
latency.min_latency.as_micros(),
latency.max_latency.as_micros(),
latency.accumulated_latency.as_micros() / latency.count as u128,
Expand Down

0 comments on commit 4a801cd

Please sign in to comment.