abouttreesummaryrefslogcommitdiff
path: root/src/matrix_http_esp32.c
diff options
context:
space:
mode:
authorPatrick2023-11-14 12:35:01 +0100
committerPatrick2023-11-14 12:35:01 +0100
commit9030210ff764c36cb6b0c1dacf40b016bab90d7c (patch)
tree1af3381408897ea12eb38d7e86e4517ad21dc24c /src/matrix_http_esp32.c
parent76e3b9268050341cc9e84bab764bcda3ac2961af (diff)
downloadmatrix_esp_thesis-9030210ff764c36cb6b0c1dacf40b016bab90d7c.tar.gz
matrix_esp_thesis-9030210ff764c36cb6b0c1dacf40b016bab90d7c.zip
clean up
Diffstat (limited to 'src/matrix_http_esp32.c')
-rw-r--r--src/matrix_http_esp32.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/matrix_http_esp32.c b/src/matrix_http_esp32.c
index 2cc4cfe..5406fc8 100644
--- a/src/matrix_http_esp32.c
+++ b/src/matrix_http_esp32.c
@@ -202,8 +202,6 @@ MatrixHttpGet(
else
authorizationHeader[0] = '\0';
- printf("GET %s%s\n", hc->host, url);
-
hc->data = outResponseBuffer;
hc->dataCap = outResponseCap;
hc->dataLen = 0;
@@ -243,8 +241,6 @@ MatrixHttpPost(
else
authorizationHeader[0] = '\0';
- printf("POST %s%s\n%s\n", hc->host, url, requestBuffer);
-
hc->data = outResponseBuffer;
hc->dataCap = outResponseCap;
hc->dataLen = 0;
@@ -286,8 +282,6 @@ MatrixHttpPut(
else
authorizationHeader[0] = '\0';
- printf("PUT %s%s\n%s\n", hc->host, url, requestBuffer);
-
hc->data = outResponseBuffer;
hc->dataCap = outResponseCap;
hc->dataLen = 0;