From bf2ddede1c5f68f81ece754f511aefdafcdb2815 Mon Sep 17 00:00:00 2001 From: Carson Labrado Date: Thu, 10 Aug 2023 00:37:06 +0000 Subject: 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 Change-Id: I1e7bca0bb38487b26a4642ab72ce475170bb53c6 --- http/http_client.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'http/http_client.hpp') diff --git a/http/http_client.hpp b/http/http_client.hpp index 71fb885551..e1c4d374eb 100644 --- a/http/http_client.hpp +++ b/http/http_client.hpp @@ -766,7 +766,7 @@ class ConnectionPool : public std::enable_shared_from_this } 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)); -- cgit v1.2.3