Reduce some Error log severities
There are instances of ERROR logs that would work better as WARNING or
DEBUG since they do not actually result in bailing early and returning
an error response.
Signed-off-by: Carson Labrado <clabrado@google.com>
Change-Id: I1e7bca0bb38487b26a4642ab72ce475170bb53c6
diff --git a/http/http_client.hpp b/http/http_client.hpp
index 71fb885..e1c4d37 100644
--- a/http/http_client.hpp
+++ b/http/http_client.hpp
@@ -766,7 +766,7 @@
}
else if (requestQueue.size() < maxRequestQueueSize)
{
- BMCWEB_LOG_ERROR(
+ BMCWEB_LOG_DEBUG(
"Max pool size reached. Adding data to queue.{}:{}", destIP,
std::to_string(destPort));
requestQueue.emplace_back(std::move(thisReq), std::move(cb));