Quiet SSL and HTTPClient debug

This commit is contained in:
me-no-dev
2017-09-29 20:31:45 +08:00
parent 7aa1913506
commit e72895b722
4 changed files with 70 additions and 71 deletions

View File

@ -118,7 +118,7 @@ int WiFiClient::setSocketOption(int option, char* value, size_t len)
{
int res = setsockopt(fd(), SOL_SOCKET, option, value, len);
if(res < 0) {
log_e("%d", errno);
log_e("%X : %d", option, errno);
}
return res;
}