diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2024-03-01 13:42:38 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-03-08 14:18:43 +0100 |
commit | 197dffc50bed5bce87c142891eee616549670c84 (patch) | |
tree | 77b74bffe4a8ed4e3e60950f4f5f780e2eb13a16 /src/other_tools/utils/curl_url_handle.cpp | |
parent | 274ee28fb5d8d5dea123eaa9fc51fd83eeda145a (diff) | |
download | justbuild-197dffc50bed5bce87c142891eee616549670c84.tar.gz |
just-mr: Report fetch URLs on debug level
Diffstat (limited to 'src/other_tools/utils/curl_url_handle.cpp')
-rw-r--r-- | src/other_tools/utils/curl_url_handle.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/other_tools/utils/curl_url_handle.cpp b/src/other_tools/utils/curl_url_handle.cpp index 5722a1cb..bd79b228 100644 --- a/src/other_tools/utils/curl_url_handle.cpp +++ b/src/other_tools/utils/curl_url_handle.cpp @@ -167,7 +167,8 @@ auto CurlURLHandle::Create(std::string const& url) noexcept auto rc = curl_url_set(handle, CURLUPART_URL, url.c_str(), 0U); if (rc != CURLUE_OK) { Logger::Log(LogLevel::Debug, - "CurlURLHandle: parsing URL failed with:\n{}", + "CurlURLHandle: parsing URL {} failed with:\n{}", + url, curl_url_strerror(rc)); curl_url_cleanup(handle); return nullptr; |