From c684ecda3e2d360760653b15ca8473c658cd76c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Sun, 24 Nov 2024 11:45:38 +0100 Subject: [PATCH] wifi: Improve some PHY logs --- src/wifi/model/he/he-ppdu.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wifi/model/he/he-ppdu.cc b/src/wifi/model/he/he-ppdu.cc index b8420b869..24127b426 100644 --- a/src/wifi/model/he/he-ppdu.cc +++ b/src/wifi/model/he/he-ppdu.cc @@ -413,8 +413,8 @@ HePpdu::GetTxChannelWidth() const const auto ruWidth = HeRu::GetBandwidth(txVector.GetRu(GetStaId()).GetRuType()); MHz_u channelWidth = (flag == PSD_NON_HE_PORTION && ruWidth < MHz_u{20}) ? MHz_u{20} : ruWidth; - NS_LOG_INFO("Use channelWidth=" << channelWidth << " MHz for HE TB from " << GetStaId() - << " for " << flag); + NS_LOG_INFO("Use " << channelWidth << " MHz for TB PPDU from " << GetStaId() << " for " + << flag); return channelWidth; } else