From 7085f159cef0e15fb6fe7e64cbe147d41323e82f Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sun, 28 Oct 2018 22:00:38 +0100 Subject: [PATCH] helpers.cpp: reduce debug output in downloadUrl() Usage of debug level INFO should be enough. Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/4adec299c93c9575409cdc5dd0bef593a01c706d Author: Thilo Graf Date: 2018-10-28 (Sun, 28 Oct 2018) ------------------ This commit was generated by Migit --- src/system/helpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/helpers.cpp b/src/system/helpers.cpp index e20c8e6c8..38e9742a5 100644 --- a/src/system/helpers.cpp +++ b/src/system/helpers.cpp @@ -1839,7 +1839,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();