aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/chttp2/writing.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-18 13:38:38 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-18 13:38:38 -0700
commit8b2f1d7a21d8feef9f16e40eca72dbba881617fd (patch)
tree0e1511fd8fe7080d886f7ca11b3399d5cf03cd8f /src/core/transport/chttp2/writing.c
parent3255b3caf73e94a0b7c77ea7e8f143a0144e4037 (diff)
Bug fixes, spam cleanup
Diffstat (limited to 'src/core/transport/chttp2/writing.c')
-rw-r--r--src/core/transport/chttp2/writing.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/transport/chttp2/writing.c b/src/core/transport/chttp2/writing.c
index 5fbec8fdad..a8e87c3fe3 100644
--- a/src/core/transport/chttp2/writing.c
+++ b/src/core/transport/chttp2/writing.c
@@ -84,11 +84,6 @@ int grpc_chttp2_unlocking_check_writes(
transport_global->outgoing_window -= window_delta;
stream_global->outgoing_window -= window_delta;
- gpr_log(GPR_DEBUG, "%s ws:%d nops:%d rc:%d",
- transport_global->is_client ? "CLI" : "SVR",
- stream_global->write_state, stream_global->outgoing_sopb->nops,
- stream_global->read_closed);
-
if (stream_global->write_state == WRITE_STATE_QUEUED_CLOSE &&
stream_global->outgoing_sopb->nops == 0) {
if (!transport_global->is_client && !stream_global->read_closed) {
@@ -178,9 +173,6 @@ static void finalize_outbuf(grpc_chttp2_transport_writing *transport_writing) {
while (
grpc_chttp2_list_pop_writing_stream(transport_writing, &stream_writing)) {
- gpr_log(GPR_DEBUG, "%s write %d: sc=%d",
- transport_writing->is_client ? "CLI" : "SVR", stream_writing->id,
- stream_writing->send_closed);
grpc_chttp2_encode(stream_writing->sopb.ops, stream_writing->sopb.nops,
stream_writing->send_closed != DONT_SEND_CLOSED,
stream_writing->id, &transport_writing->hpack_compressor,