diff --git a/src/wifi/model/ht/ht-phy.cc b/src/wifi/model/ht/ht-phy.cc index 443bf7b50..bb232c478 100644 --- a/src/wifi/model/ht/ht-phy.cc +++ b/src/wifi/model/ht/ht-phy.cc @@ -821,7 +821,6 @@ HtPhy::GetMaxPsduSize() const PhyEntity::CcaIndication HtPhy::GetCcaIndication(const Ptr ppdu) { - NS_LOG_FUNCTION(this); if (m_wifiPhy->GetChannelWidth() < 40) { return OfdmPhy::GetCcaIndication(ppdu); diff --git a/src/wifi/model/vht/vht-phy.cc b/src/wifi/model/vht/vht-phy.cc index 3a5ddebbb..2e89b9594 100644 --- a/src/wifi/model/vht/vht-phy.cc +++ b/src/wifi/model/vht/vht-phy.cc @@ -583,8 +583,6 @@ VhtPhy::GetCcaThreshold(const Ptr ppdu, WifiChannelListType chan PhyEntity::CcaIndication VhtPhy::GetCcaIndication(const Ptr ppdu) { - NS_LOG_FUNCTION(this); - if (m_wifiPhy->GetChannelWidth() < 80) { return HtPhy::GetCcaIndication(ppdu); diff --git a/src/wifi/model/wifi-phy.cc b/src/wifi/model/wifi-phy.cc index 6be3c1896..70b15398f 100644 --- a/src/wifi/model/wifi-phy.cc +++ b/src/wifi/model/wifi-phy.cc @@ -753,7 +753,6 @@ WifiPhy::GetPhyEntityForPpdu(const Ptr ppdu) const void WifiPhy::AddStaticPhyEntity(WifiModulationClass modulation, Ptr phyEntity) { - NS_LOG_FUNCTION(modulation); NS_ASSERT_MSG(GetStaticPhyEntities().find(modulation) == GetStaticPhyEntities().end(), "The PHY entity has already been added. The setting should only be done once per " "modulation class");