From dcfefa2adbd998fa5eab33a9b8c5e0005c53394d Mon Sep 17 00:00:00 2001 From: Lynn Shi Date: Tue, 19 Oct 2021 22:48:39 -0400 Subject: [PATCH] WIFI-4732 Default 5G backup channel is not applicable to all countries (add debug) --- .../integration/OpensyncExternalIntegrationCloud.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/opensync-ext-cloud/src/main/java/com/telecominfraproject/wlan/opensync/external/integration/OpensyncExternalIntegrationCloud.java b/opensync-ext-cloud/src/main/java/com/telecominfraproject/wlan/opensync/external/integration/OpensyncExternalIntegrationCloud.java index baad907..a28c54a 100644 --- a/opensync-ext-cloud/src/main/java/com/telecominfraproject/wlan/opensync/external/integration/OpensyncExternalIntegrationCloud.java +++ b/opensync-ext-cloud/src/main/java/com/telecominfraproject/wlan/opensync/external/integration/OpensyncExternalIntegrationCloud.java @@ -1152,7 +1152,8 @@ public class OpensyncExternalIntegrationCloud implements OpensyncExternalIntegra continue; } - LOG.debug("Values from Vif State Mac (BSSID) {} SSID {} AssociatedClients {} Channel {}", bssid, ssid, vifState.getAssociatedClients()); + LOG.debug("Values from Vif State Mac (BSSID) {} SSID {} AssociatedClients {} Channel {}", bssid, ssid, + vifState.getAssociatedClients(), channel); RadioType radioType = null; Map rfElementMap = rfConfig.getRfConfigMap(); @@ -1404,7 +1405,7 @@ public class OpensyncExternalIntegrationCloud implements OpensyncExternalIntegra apElementConfiguration.getRadioMap().get(radioState.getFreqBand()).setAllowedChannelsPowerLevels(channelPowerLevels); } - LOG.debug("Updated AllowedChannels from Wifi_Radio_State table change for AP {}", apId); + LOG.debug("Updated AllowedChannels from Wifi_Radio_State table change for AP {} configStateMismatch {}", apId, configStateMismatch); return configStateMismatch; }