From a70fe5ef06ffdb2057a15be3ccd788643ddbcfa6 Mon Sep 17 00:00:00 2001 From: Gaofeng Zhang Date: Thu, 10 Oct 2024 16:16:18 +0800 Subject: [PATCH] hostap: hostap: modify log type from info to debug print too long msg when eap enterprise. we should not print the log, so set print type to debug. Signed-off-by: Gaofeng Zhang --- hostapd/hostapd_cli_zephyr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hostapd/hostapd_cli_zephyr.c b/hostapd/hostapd_cli_zephyr.c index a5e20ef69..af7966edb 100644 --- a/hostapd/hostapd_cli_zephyr.c +++ b/hostapd/hostapd_cli_zephyr.c @@ -269,7 +269,7 @@ static void hostapd_cli_recv_pending(struct wpa_ctrl *ctrl, struct hostapd_data wpa_printf(MSG_DEBUG, "Received len: %d, msg_len:%d - %s->END\n", plen, msg->msg_len, msg->msg); if (msg->msg_len >= MAX_CTRL_MSG_LEN) { - wpa_printf(MSG_INFO, "Too long message received.\n"); + wpa_printf(MSG_DEBUG, "Too long message received.\n"); continue; }