Disable useless curl verbose output

This commit is contained in:
Jan Kaluza 2016-01-02 20:06:57 +01:00
parent 408fcd8f96
commit a63920e965

View file

@ -56,7 +56,7 @@ bool HTTPRequest::GET(std::string url, std::string &data)
/* Set http request and url */
curl_easy_setopt(curlhandle, CURLOPT_HTTPGET, 1);
curl_easy_setopt(curlhandle, CURLOPT_VERBOSE, 1);
// curl_easy_setopt(curlhandle, CURLOPT_VERBOSE, 1);
curl_easy_setopt(curlhandle, CURLOPT_URL, url.c_str());
/* Send http request and return status*/