aboutsummaryrefslogtreecommitdiff
path: root/src/print.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/print.rs')
-rw-r--r--src/print.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/print.rs b/src/print.rs
index 39a4382..de5e508 100644
--- a/src/print.rs
+++ b/src/print.rs
@@ -200,10 +200,9 @@ pub fn print_stats(stats: &Stats) {
let mad_rtt_rounded = stats.mad_rtt.round() as u64;
let mean_rtt_round = stats.avg_rtt.round() as u32;
- let mean_ttl_round = stats.avg_ttl.round() as u32;
println!(
- "{}/{} ({:.1}%) | ⌊{}⌋ ⌈{}⌉ [{}] [Δ{}]ms / ⌊{}⌋ ⌈{}⌉ [{}]{}",
+ "{}/{} ({:.1}%) | ⌊{}⌋ ⌈{}⌉ [{}] [Δ{}]ms{}",
stats.lost,
total,
percent_lost,
@@ -211,9 +210,6 @@ pub fn print_stats(stats: &Stats) {
stats.max_rtt,
mean_rtt_round,
mad_rtt_rounded,
- stats.min_ttl,
- stats.max_ttl,
- mean_ttl_round,
ERASE_LINE_END
);
}