From 533bf013dc5a0166ef9e5c23751273afd917be97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Fri, 23 Feb 2024 18:02:51 +0100 Subject: [PATCH] wifi: Cleanup excessive logs with no real benefit --- src/wifi/model/spectrum-wifi-phy.cc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/wifi/model/spectrum-wifi-phy.cc b/src/wifi/model/spectrum-wifi-phy.cc index a4d8bc344..683fd3dd7 100644 --- a/src/wifi/model/spectrum-wifi-phy.cc +++ b/src/wifi/model/spectrum-wifi-phy.cc @@ -457,15 +457,7 @@ SpectrumWifiPhy::StartRx(Ptr rxParams, { double rxPowerPerBandW = WifiSpectrumValueHelper::GetBandPowerW(receivedSignalPsd, band.indices); - NS_LOG_DEBUG("Signal power received (watts) before antenna gain for RU with type " - << ru.GetRuType() << " and index " << ru.GetIndex() << " -> (" - << band.indices.first << "; " << band.indices.second - << "): " << rxPowerPerBandW); rxPowerPerBandW *= rxGainRatio; - NS_LOG_DEBUG("Signal power received after antenna gain for RU with type " - << ru.GetRuType() << " and index " << ru.GetIndex() << " -> (" - << band.indices.first << "; " << band.indices.second << "): " - << rxPowerPerBandW << " W (" << WToDbm(rxPowerPerBandW) << " dBm)"); rxPowerW.insert({band, rxPowerPerBandW}); } }