From 42ac4614e63d5549fba5879fbc8804c098ba1e14 Mon Sep 17 00:00:00 2001 From: Kapil Gupta Date: Mon, 7 Aug 2023 13:43:29 +0530 Subject: [PATCH] change(wifi): Reduce BSS logging in wpa_supplicant --- components/wpa_supplicant/src/common/bss.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/wpa_supplicant/src/common/bss.c b/components/wpa_supplicant/src/common/bss.c index 5868328c54..167fcc96ff 100644 --- a/components/wpa_supplicant/src/common/bss.c +++ b/components/wpa_supplicant/src/common/bss.c @@ -225,11 +225,11 @@ wpa_bss_update(struct wpa_supplicant *wpa_s, struct wpa_bss *bss, * to filter out the obsolete results here to make sure only the * most current BSS information remains in the table. */ - wpa_printf(MSG_DEBUG, "BSS: " MACSTR + wpa_printf(MSG_MSGDUMP, "BSS: " MACSTR " has multiple entries in the scan results - select the most current one", MAC2STR(bss->bssid)); calculate_update_time(fetch_time, res->age, &update_time); - wpa_printf(MSG_DEBUG, + wpa_printf(MSG_MSGDUMP, "Accept this BSS entry since it looks more current than the previous update"); }