From a63920e965e5bef3f56d1fca9ea4f6dfe7d7d7d1 Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Sat, 2 Jan 2016 20:06:57 +0100 Subject: [PATCH] Disable useless curl verbose output --- backends/twitter/HTTPRequest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/twitter/HTTPRequest.cpp b/backends/twitter/HTTPRequest.cpp index a6361628..b2b0c110 100644 --- a/backends/twitter/HTTPRequest.cpp +++ b/backends/twitter/HTTPRequest.cpp @@ -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*/