Skip to content

Commit

Permalink
Merge branch 'feature/adjust_log_level' into 'master'
Browse files Browse the repository at this point in the history
[tcp_transport] - Change log level on socket reading timeout

See merge request espressif/esp-idf!20448
  • Loading branch information
euripedesrocha committed Oct 3, 2022
2 parents 5fffe4b + 456d6a5 commit d6aacbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/tcp_transport/transport_ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit d6aacbc

Please sign in to comment.