Merge branch 'bugfix/protocomm_http_print' into 'master'
protocomm_httpd: Change an info print to debug print as it isn't really required in the logs See merge request espressif/esp-idf!11223
This commit is contained in:
commit
178b122c14
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ static esp_err_t common_post_handler(httpd_req_t *req)
|
||||||
int cur_session_id = httpd_req_to_sockfd(req);
|
int cur_session_id = httpd_req_to_sockfd(req);
|
||||||
|
|
||||||
if (cur_session_id != session_id) {
|
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 */
|
/* Initialize new security session */
|
||||||
if (session_id != PROTOCOMM_NO_SESSION_ID) {
|
if (session_id != PROTOCOMM_NO_SESSION_ID) {
|
||||||
ESP_LOGD(TAG, "Closing session with ID: %d", session_id);
|
ESP_LOGD(TAG, "Closing session with ID: %d", session_id);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue