helpers.cpp: reduce debug output in downloadUrl()

Usage of debug level INFO should be enough.
This commit is contained in:
2018-10-16 16:49:52 +02:00
parent 7d76e4feb0
commit ffbb24609c

View File

@@ -1652,7 +1652,7 @@ bool getUrl(std::string& url, std::string& answer, std::string userAgent, unsign
bool downloadUrl(std::string url, std::string file, std::string userAgent, unsigned int timeout)
{
dprintf(DEBUG_NORMAL ,"downloadUrl: url:%s file:%s userAgent:%s\n", url.c_str(), file.c_str(), userAgent.c_str());
dprintf(DEBUG_INFO ,"[%s - %d] url: %s\tfile: %s\tuserAgent: %s\n", __func__, __LINE__, url.c_str(), file.c_str(), userAgent.c_str());
CURL * curl_handle = curl_easy_init();