From 1dc323b45e1a109c860806cb25e7eca21c29a3c0 Mon Sep 17 00:00:00 2001 From: Craig Tiller <craig.tiller@gmail.com> Date: Tue, 25 Aug 2015 11:33:26 -0700 Subject: [PATCH] Spam cleanup --- src/core/iomgr/tcp_windows.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/iomgr/tcp_windows.c b/src/core/iomgr/tcp_windows.c index 1cf2ca2131..469c382218 100644 --- a/src/core/iomgr/tcp_windows.c +++ b/src/core/iomgr/tcp_windows.c @@ -201,7 +201,6 @@ static grpc_endpoint_op_status win_read(grpc_endpoint *ep, /* Did we get data immediately ? Yay. */ if (info->wsa_error != WSAEWOULDBLOCK) { info->bytes_transfered = bytes_read; - gpr_log(GPR_DEBUG, "immread: %d bytes", bytes_read); return on_read(tcp, 1) ? GRPC_ENDPOINT_DONE : GRPC_ENDPOINT_ERROR; } @@ -214,7 +213,6 @@ static grpc_endpoint_op_status win_read(grpc_endpoint *ep, int wsa_error = WSAGetLastError(); if (wsa_error != WSA_IO_PENDING) { info->wsa_error = wsa_error; - gpr_log(GPR_DEBUG, "immread: err=%d", wsa_error); return on_read(tcp, 1) ? GRPC_ENDPOINT_DONE : GRPC_ENDPOINT_ERROR; } } -- GitLab