Skip to content

Commit

Permalink
Change log level of detailed tracing messages to TRACE instead of DEBUG
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Vetter <[email protected]>
  • Loading branch information
VeaaC committed Jun 26, 2023
1 parent 7b0c381 commit 59730bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 59730bc

Please sign in to comment.