From 08b34185badffb207da954bb865c382fd42aee86 Mon Sep 17 00:00:00 2001 From: Johannes Truschnigg Date: Sun, 20 Mar 2022 11:30:16 +0100 Subject: [PATCH] Remove max rate debug logging --- __sqm_lagthrottle.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__sqm_lagthrottle.awk b/__sqm_lagthrottle.awk index 5263575..363f9b0 100644 --- a/__sqm_lagthrottle.awk +++ b/__sqm_lagthrottle.awk @@ -181,11 +181,11 @@ function update_bw() { # Record max. rates in each direction if (tx_rate_max < tx_rate) { tx_rate_max = tx_rate - print "# " ts " new peak tx_rate=" tx_rate_max + # print "# " ts " new peak tx_rate=" tx_rate_max } if (rx_rate_max < rx_rate) { rx_rate_max = rx_rate - print "# " ts " new peak rx_rate=" rx_rate_max + # print "# " ts " new peak rx_rate=" rx_rate_max } } -- 2.39.5