diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-01-11 11:32:09 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-01-11 11:32:09 +0100 |
commit | e2fb8b704269ca1e744ba0e56e6fa975010adfe0 (patch) | |
tree | 212d60e52238921f2e45f449965d82ae6040fff3 /core | |
parent | 7055d38c30e99a0128b92a1c135ed9ae3c84aea3 (diff) | |
parent | 151e9600aa5531f513264f2ab0b77b1333611256 (diff) |
Merge pull request #3297 from AlexHolly/comment-some-print_lines
comment some print_lines
Diffstat (limited to 'core')
-rw-r--r-- | core/io/http_client.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/io/http_client.cpp b/core/io/http_client.cpp index 4d8cf121ee..4aa180ec77 100644 --- a/core/io/http_client.cpp +++ b/core/io/http_client.cpp @@ -248,7 +248,7 @@ Error HTTPClient::poll(){ status=STATUS_SSL_HANDSHAKE_ERROR; return ERR_CANT_CONNECT; } - print_line("SSL! TURNED ON!"); + //print_line("SSL! TURNED ON!"); connection=ssl; } status=STATUS_CONNECTED; @@ -295,7 +295,7 @@ Error HTTPClient::poll(){ response_str.push_back(0); String response; response.parse_utf8((const char*)response_str.ptr()); - print_line("END OF RESPONSE? :\n"+response+"\n------"); + //print_line("END OF RESPONSE? :\n"+response+"\n------"); Vector<String> responses = response.split("\n"); body_size=0; chunked=false; @@ -316,7 +316,7 @@ Error HTTPClient::poll(){ if (s.begins_with("Transfer-Encoding:")) { String encoding = s.substr(s.find(":")+1,s.length()).strip_edges(); - print_line("TRANSFER ENCODING: "+encoding); + //print_line("TRANSFER ENCODING: "+encoding); if (encoding=="chunked") { chunked=true; } |