From 082d5e7cc0d044cb6d90a2ceb6c91dfd6866a282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Fri, 22 Apr 2016 16:19:46 +0200 Subject: [PATCH] reinstated some comments.. --- esphttpclient/httpclient.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphttpclient/httpclient.c b/esphttpclient/httpclient.c index 5cb7afe..0dd6861 100644 --- a/esphttpclient/httpclient.c +++ b/esphttpclient/httpclient.c @@ -222,10 +222,10 @@ static void FLASH_FN sent_callback(void * arg) request_args * req = (request_args *)conn->reserve; if (req->post_data == NULL) { - //dbg("All sent"); + dbg("All sent"); } else { // The headers were sent, now send the contents. - //dbg("Sending request body"); + dbg("Sending request body"); if (req->secure) { #ifdef USE_SECURE espconn_secure_sent(conn, (uint8_t *)req->post_data, strlen(req->post_data));