From 9030210ff764c36cb6b0c1dacf40b016bab90d7c Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 14 Nov 2023 12:35:01 +0100 Subject: clean up --- src/matrix_http_esp32.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/matrix_http_esp32.c') 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; -- cgit v1.2.3