mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Changed: Improve cURL error message for failed requests
This commit is contained in:
parent
795c91bcc8
commit
661473d9cd
1 changed files with 6 additions and 2 deletions
|
@ -497,7 +497,11 @@ namespace NLGUI
|
|||
|
||||
if (res != CURLE_OK)
|
||||
{
|
||||
browseError(string("Connection failed with curl error " + string(curl_easy_strerror(res))).c_str());
|
||||
std::string err;
|
||||
err = "Connection failed with cURL error: ";
|
||||
err += curl_easy_strerror(res);
|
||||
err += "\nURL '" + _CurlWWW->Url + "'";
|
||||
browseError(err.c_str());
|
||||
}
|
||||
else
|
||||
if ((code >= 301 && code <= 303) || code == 307 || code == 308)
|
||||
|
@ -541,7 +545,7 @@ namespace NLGUI
|
|||
|
||||
if ( (code < 200 || code >= 300) )
|
||||
{
|
||||
browseError(string("Connection failed (curl code " + toString((sint32)res) + "), http code " + toString((sint32)code) + ") : " + _CurlWWW->Url).c_str());
|
||||
browseError(string("Connection failed (curl code " + toString((sint32)res) + ")\nhttp code " + toString((sint32)code) + ")\nURL '" + _CurlWWW->Url + "'").c_str());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue