From a7451b6abe4c01427f452215882fe9772d00a39c Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Sat, 15 Jan 2022 09:50:10 -0800 Subject: [PATCH] Airtime - removed debug message --- src/airtime.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/airtime.cpp b/src/airtime.cpp index b559c29e..7f281597 100644 --- a/src/airtime.cpp +++ b/src/airtime.cpp @@ -44,7 +44,7 @@ void AirTime::airtimeRotatePeriod() { if (this->airtimes.lastPeriodIndex != currentPeriodIndex()) { - DEBUG_MSG("Rotating airtimes to a new period = %u\n", currentPeriodIndex()); + //DEBUG_MSG("Rotating airtimes to a new period = %u\n", currentPeriodIndex()); for (int i = PERIODS_TO_LOG - 2; i >= 0; --i) { this->airtimes.periodTX[i + 1] = this->airtimes.periodTX[i]; @@ -174,7 +174,7 @@ int32_t AirTime::runOnce() } - DEBUG_MSG("Minutes %d TX Airtime %3.2f%\n", utilPeriodTX, airTime->utilizationTXPercent()); + //DEBUG_MSG("Minutes %d TX Airtime %3.2f%\n", utilPeriodTX, airTime->utilizationTXPercent()); return (1000 * 1); } \ No newline at end of file