Skip to content

Commit 9191f18

Browse files
committed
Change log level of detailed tracing messages to TRACE instead of DEBUG
1 parent 7b0c381 commit 9191f18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ ErrorCode NetworkCurl::SendImplementation(
513513
return ErrorCode::NETWORK_OVERLOAD_ERROR;
514514
}
515515

516-
OLP_SDK_LOG_DEBUG(
516+
OLP_SDK_LOG_TRACE(
517517
kLogTag, "Send request with url=" << request.GetUrl() << ", id=" << id);
518518

519519
handle->ignore_offset = false; // request.IgnoreOffset();
@@ -687,7 +687,7 @@ void NetworkCurl::Cancel(RequestId id) {
687687
handle.cancelled = true;
688688
AddEvent(EventInfo::Type::CANCEL_EVENT, &handle);
689689

690-
OLP_SDK_LOG_DEBUG(kLogTag, "Cancel request with id=" << id);
690+
OLP_SDK_LOG_TRACE(kLogTag, "Cancel request with id=" << id);
691691
return;
692692
}
693693
}

0 commit comments

Comments
 (0)