Explorar el Código

[tcp_transport] - Change log level on socket reading timeout

- Log level set to VERBOSE to reduce noise on debug.
Euripedes Rocha hace 3 años
padre
commit
456d6a5d17
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      components/tcp_transport/transport_ssl.c

+ 1 - 1
components/tcp_transport/transport_ssl.c

@@ -169,7 +169,7 @@ static int base_poll_read(esp_transport_handle_t t, int timeout_ms)
         ESP_LOGE(TAG, "poll_read select error %d, errno = %s, fd = %d", sock_errno, strerror(sock_errno), ssl->sockfd);
         ret = -1;
     } else if (ret == 0) {
-        ESP_LOGD(TAG, "poll_read: select - Timeout before any socket was ready!");
+        ESP_LOGV(TAG, "poll_read: select - Timeout before any socket was ready!");
     }
     return ret;
 }