Skip to content

Commit 4afbf3d

Browse files
committed
Revert "xx"
This reverts commit 258d712.
1 parent dda442f commit 4afbf3d

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/core/ext/transport/chttp2/transport/hpack_parser.cc

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1543,8 +1543,6 @@ HPackParser::~HPackParser() {
15431543
}
15441544

15451545
void HPackParser::BeginFrame(Sink sink, Boundary boundary, Priority priority) {
1546-
gpr_log(GPR_ERROR, "%p BeginFrame: b=%d, p=%d", this, (int)boundary,
1547-
(int)priority);
15481546
sink_ = std::move(sink);
15491547
boundary_ = boundary;
15501548
switch (priority) {
@@ -1558,14 +1556,10 @@ void HPackParser::BeginFrame(Sink sink, Boundary boundary, Priority priority) {
15581556
}
15591557

15601558
void HPackParser::QueueBufferToParse(const grpc_slice& slice) {
1561-
char* buffer = grpc_dump_slice(slice, GPR_DUMP_ASCII | GPR_DUMP_HEX);
1562-
gpr_log(GPR_ERROR, "%p qslice %s", this, buffer);
1563-
gpr_free(buffer);
15641559
queued_slices_.push_back(grpc_slice_ref_internal(slice));
15651560
}
15661561

15671562
grpc_error_handle HPackParser::Parse() {
1568-
gpr_log(GPR_ERROR, "%p Parse", this);
15691563
grpc_error_handle error = GRPC_ERROR_NONE;
15701564
for (const auto& slice : queued_slices_) {
15711565
error = Parse(slice);
@@ -1648,7 +1642,6 @@ grpc_error_handle grpc_chttp2_header_parser_parse(void* hpack_parser,
16481642
int is_last) {
16491643
GPR_TIMER_SCOPE("grpc_chttp2_header_parser_parse", 0);
16501644
auto* parser = static_cast<grpc_core::HPackParser*>(hpack_parser);
1651-
gpr_log(GPR_ERROR, "%p parse: is_last=%d", parser, is_last);
16521645
if (s != nullptr) {
16531646
s->stats.incoming.header_bytes += GRPC_SLICE_LENGTH(slice);
16541647
}

test/core/end2end/tests/retry_per_attempt_recv_timeout.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,11 +232,11 @@ static void test_retry_per_attempt_recv_timeout(
232232

233233
peer = grpc_call_get_peer(s);
234234
GPR_ASSERT(peer != nullptr);
235-
gpr_log(GPR_ERROR, "server_peer=%s", peer);
235+
gpr_log(GPR_DEBUG, "server_peer=%s", peer);
236236
gpr_free(peer);
237237
peer = grpc_call_get_peer(c);
238238
GPR_ASSERT(peer != nullptr);
239-
gpr_log(GPR_ERROR, "client_peer=%s", peer);
239+
gpr_log(GPR_DEBUG, "client_peer=%s", peer);
240240
gpr_free(peer);
241241

242242
// Server sends status ABORTED.

0 commit comments

Comments
 (0)