Skip to content

Commit

Permalink
More debug
Browse files Browse the repository at this point in the history
Signed-off-by: Fredy Wijaya <[email protected]>
  • Loading branch information
fredyw committed Jul 18, 2024
1 parent 28b418a commit fe00ad1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/common/http/codec_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "source/common/http/http2/codec_impl.h"
#include "source/common/http/status.h"
#include "source/common/http/utility.h"
#include "source/server/backtrace.h"

#ifdef ENVOY_ENABLE_QUIC
#include "source/common/quic/client_codec_impl.h"
Expand Down Expand Up @@ -156,7 +157,8 @@ void CodecClient::completeRequest(ActiveRequest& request) {
}

void CodecClient::onReset(ActiveRequest& request, StreamResetReason reason) {
ENVOY_CONN_LOG(debug, "request reset", *connection_);
ENVOY_CONN_LOG(debug, "request reset: {}", *connection_, static_cast<int32_t>(reason));
BACKTRACE_LOG();
if (codec_client_callbacks_) {
codec_client_callbacks_->onStreamReset(reason);
}
Expand Down

0 comments on commit fe00ad1

Please sign in to comment.