add url to curl error log

This commit is contained in:
TangoCash
2021-09-30 14:31:17 +02:00
committed by Thilo Graf
parent e42d4570cd
commit e750dceea2

View File

@@ -1780,7 +1780,8 @@ bool getUrl(std::string& url, std::string& answer, std::string userAgent, unsign
if (httpres != 0 || answer.empty())
{
dprintf(DEBUG_NORMAL, "getUrl: error: %s\n", cerror);
dprintf(DEBUG_NORMAL, "getUrl: error msg: %s\n", cerror);
dprintf(DEBUG_NORMAL, "getUrl: error url: %s\n", url.c_str());
return false;
}
@@ -1828,7 +1829,8 @@ bool downloadUrl(std::string url, std::string file, std::string userAgent, unsig
if (httpres != 0)
{
dprintf(DEBUG_NORMAL, "curl error: %s\n", cerror);
dprintf(DEBUG_NORMAL, "curl error msg: %s\n", cerror);
dprintf(DEBUG_NORMAL, "curl error url: %s\n", url.c_str());
unlink(file.c_str());
return false;
}