From 33f7260ae100d0b642b2f9bce6407690e1c836cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Wed, 13 Sep 2023 12:39:40 +0200 Subject: [PATCH] wifi: Enable logs for helpers in WifiHelper::EnableLogComponents --- src/wifi/helper/wifi-helper.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wifi/helper/wifi-helper.cc b/src/wifi/helper/wifi-helper.cc index 99611e2b5..f7f409d56 100644 --- a/src/wifi/helper/wifi-helper.cc +++ b/src/wifi/helper/wifi-helper.cc @@ -975,6 +975,11 @@ WifiHelper::EnableLogComponents() LogComponentEnable("YansWifiChannel", LOG_LEVEL_ALL); LogComponentEnable("YansWifiPhy", LOG_LEVEL_ALL); + LogComponentEnable("Athstats", LOG_LEVEL_ALL); + LogComponentEnable("WifiHelper", LOG_LEVEL_ALL); + LogComponentEnable("SpectrumWifiHelper", LOG_LEVEL_ALL); + LogComponentEnable("YansWifiHelper", LOG_LEVEL_ALL); + // From Spectrum LogComponentEnable("WifiSpectrumValueHelper", LOG_LEVEL_ALL); }