From 85cb1e8ca37302d282b041fc5768a2d248e08a32 Mon Sep 17 00:00:00 2001 From: Piyush Shah Date: Thu, 12 Nov 2020 22:18:38 +0530 Subject: [PATCH] protocomm_httpd: Change an info print to debug print as it isn't really required in the logs --- components/protocomm/src/transports/protocomm_httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/protocomm/src/transports/protocomm_httpd.c b/components/protocomm/src/transports/protocomm_httpd.c index a8ee22790d..020d7e0deb 100644 --- a/components/protocomm/src/transports/protocomm_httpd.c +++ b/components/protocomm/src/transports/protocomm_httpd.c @@ -53,7 +53,7 @@ static esp_err_t common_post_handler(httpd_req_t *req) int cur_session_id = httpd_req_to_sockfd(req); if (cur_session_id != session_id) { - ESP_LOGI(TAG, "Creating new session: %d", cur_session_id); + ESP_LOGD(TAG, "Creating new session: %d", cur_session_id); /* Initialize new security session */ if (session_id != PROTOCOMM_NO_SESSION_ID) { ESP_LOGD(TAG, "Closing session with ID: %d", session_id);