diff --git a/lib/libimhex/source/helpers/net.cpp b/lib/libimhex/source/helpers/net.cpp index bdc5bef27..a29cd497f 100644 --- a/lib/libimhex/source/helpers/net.cpp +++ b/lib/libimhex/source/helpers/net.cpp @@ -124,6 +124,9 @@ namespace hex { char *url = nullptr; curl_easy_getinfo(this->m_ctx, CURLINFO_EFFECTIVE_URL, &url); log::error("Net request '{0}' failed with error {1}: '{2}'", url, u32(result), curl_easy_strerror(result)); + if(!Net::s_proxyUrl.empty()){ + log::info("A custom proxy '{}' is in use. Is it working correctly?", Net::s_proxyUrl); + } } long responseCode = 0; @@ -279,4 +282,4 @@ namespace hex { Net::s_proxyUrl = url; } -} \ No newline at end of file +}