diff options
author | Alexander Holland <alexander.holland@live.de> | 2016-01-09 23:53:34 +0100 |
---|---|---|
committer | Alexander Holland <alexander.holland@live.de> | 2016-01-09 23:53:34 +0100 |
commit | 151e9600aa5531f513264f2ab0b77b1333611256 (patch) | |
tree | d898b1c13da5c7bce03dbe45b2271efac40f48f0 /core | |
parent | 662ed9ca8dc934d35a8a7cf1ab6a8f7404df3ba4 (diff) |
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; } |