helpers: simplify 364a86a34d

Origin commit data
------------------
Branch: ni/coolstream
Commit: dd5610b497
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-02 (Sat, 02 Oct 2021)

Origin message was:
------------------
- helpers: simplify 364a86a34d

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2021-10-02 19:08:11 +02:00
parent 5a6b498278
commit d9cde38ca1

View File

@@ -1908,7 +1908,7 @@ size_t CurlWriteToString(void *ptr, size_t size, size_t nmemb, void *data)
bool getUrl(std::string& url, std::string& answer, std::string userAgent, unsigned int timeout) bool getUrl(std::string& url, std::string& answer, std::string userAgent, unsigned int timeout)
{ {
dprintf(DEBUG_NORMAL, "getUrl: url:%s\n", url.c_str()); dprintf(DEBUG_NORMAL, "getUrl: url: %s\n", url.c_str());
CURL * curl_handle = curl_easy_init(); CURL * curl_handle = curl_easy_init();
@@ -1938,8 +1938,7 @@ bool getUrl(std::string& url, std::string& answer, std::string userAgent, unsign
if (httpres != 0 || answer.empty()) if (httpres != 0 || answer.empty())
{ {
dprintf(DEBUG_NORMAL, "getUrl: error msg: %s\n", cerror); dprintf(DEBUG_NORMAL, "getUrl: error: %s (%s)\n", cerror, url.c_str());
dprintf(DEBUG_NORMAL, "getUrl: error url: %s\n", url.c_str());
return false; return false;
} }
@@ -1987,8 +1986,7 @@ bool downloadUrl(std::string url, std::string file, std::string userAgent, unsig
if (httpres != 0) if (httpres != 0)
{ {
dprintf(DEBUG_NORMAL, "curl error msg: %s\n", cerror); dprintf(DEBUG_NORMAL, "curl error: %s (%s)\n", cerror, url.c_str());
dprintf(DEBUG_NORMAL, "curl error url: %s\n", url.c_str());
unlink(file.c_str()); unlink(file.c_str());
return false; return false;
} }