From 8da8abdeaa69f7d864487c8d19b6d15d2a741d7b Mon Sep 17 00:00:00 2001 From: def Date: Thu, 5 Feb 2015 19:41:48 +0100 Subject: [PATCH] No more verbose curl output --- src/engine/client/fetcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/client/fetcher.cpp b/src/engine/client/fetcher.cpp index fe6fdb53c..ec5dc7eac 100644 --- a/src/engine/client/fetcher.cpp +++ b/src/engine/client/fetcher.cpp @@ -109,7 +109,7 @@ bool CFetcher::FetchFile(CFetchTask *pTask) char aErr[CURL_ERROR_SIZE]; curl_easy_setopt(m_pHandle, CURLOPT_ERRORBUFFER, aErr); - curl_easy_setopt(m_pHandle, CURLOPT_VERBOSE, 1L); + //curl_easy_setopt(m_pHandle, CURLOPT_VERBOSE, 1L); curl_easy_setopt(m_pHandle, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(m_pHandle, CURLOPT_MAXREDIRS, 4L); curl_easy_setopt(m_pHandle, CURLOPT_FAILONERROR, 1L);