Unverified Commit 39688218 authored by Frank's avatar Frank Committed by GitHub

HttpClient uses Serial.printf() (#4488)

changed to log_d()
parent 90f869e7
...@@ -583,7 +583,7 @@ int HTTPClient::sendRequest(const char * type, uint8_t * payload, size_t size) ...@@ -583,7 +583,7 @@ int HTTPClient::sendRequest(const char * type, uint8_t * payload, size_t size)
} }
code = handleHeaderResponse(); code = handleHeaderResponse();
Serial.printf("sendRequest code=%d\n", code); log_d("sendRequest code=%d\n", code);
// Handle redirections as stated in RFC document: // Handle redirections as stated in RFC document:
// https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html // https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment