From 59730bc47b832f111e786bdb1a6facd9a17d4760 Mon Sep 17 00:00:00 2001 From: Christian Vetter Date: Mon, 26 Jun 2023 07:16:16 +0000 Subject: [PATCH] Change log level of detailed tracing messages to TRACE instead of DEBUG Signed-off-by: Christian Vetter --- olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp b/olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp index 0d311d1cd..420e196f5 100644 --- a/olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp +++ b/olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp @@ -513,7 +513,7 @@ ErrorCode NetworkCurl::SendImplementation( return ErrorCode::NETWORK_OVERLOAD_ERROR; } - OLP_SDK_LOG_DEBUG( + OLP_SDK_LOG_TRACE( kLogTag, "Send request with url=" << request.GetUrl() << ", id=" << id); handle->ignore_offset = false; // request.IgnoreOffset(); @@ -687,7 +687,7 @@ void NetworkCurl::Cancel(RequestId id) { handle.cancelled = true; AddEvent(EventInfo::Type::CANCEL_EVENT, &handle); - OLP_SDK_LOG_DEBUG(kLogTag, "Cancel request with id=" << id); + OLP_SDK_LOG_TRACE(kLogTag, "Cancel request with id=" << id); return; } }