]> johannes.truschnigg.info Git - sqm_lagthrottle/commitdiff
Remove max rate debug logging
authorJohannes Truschnigg <johannes@truschnigg.info>
Sun, 20 Mar 2022 10:30:16 +0000 (11:30 +0100)
committerJohannes Truschnigg <johannes@truschnigg.info>
Sun, 20 Mar 2022 10:30:16 +0000 (11:30 +0100)
__sqm_lagthrottle.awk

index 52635757407f72e42ddc83e5d61b2f92654c10f6..363f9b0589a43e2f11fe3cccca1b27f3cd2accaa 100644 (file)
@@ -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
   }
 }