From cfbec747267e03042300be0bc8a52e20f6ade57f Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Mon, 16 Dec 2024 18:49:10 -0600 Subject: [PATCH] url already has params on it --- src/launchpad.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/launchpad.cpp b/src/launchpad.cpp index 73e2ae1..4c540d9 100644 --- a/src/launchpad.cpp +++ b/src/launchpad.cpp @@ -268,7 +268,7 @@ std::optional launchpad::api_get(const std::string& endpoint, const } if (http_code >= 400) { - std::cerr << "HTTP GET request to " << url << " with params " << params << " failed with code: " << http_code << "\nResponse: " << readBuffer << std::endl; + std::cerr << "HTTP GET request to " << url << " failed with code: " << http_code << "\nResponse: " << readBuffer << std::endl; return std::nullopt; } @@ -337,7 +337,7 @@ std::optional launchpad::api_post( } if (http_code >= 400) { - std::cerr << "HTTP POST request to " << url << " with params " << params << " failed with code: " << http_code << "\nResponse: " << readBuffer << std::endl; + std::cerr << "HTTP POST request to " << url << " failed with code: " << http_code << "\nResponse: " << readBuffer << std::endl; return std::nullopt; }