diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-08-25 11:33:26 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-08-25 11:33:26 -0700 |
commit | 1dc323b45e1a109c860806cb25e7eca21c29a3c0 (patch) | |
tree | 5bbadc1b7936726f5edd4a49ea3b67cc9cff52d4 /src/core/iomgr | |
parent | 207e644918ac1b7360827b19ed54f3dccb094511 (diff) |
Spam cleanup
Diffstat (limited to 'src/core/iomgr')
-rw-r--r-- | src/core/iomgr/tcp_windows.c | 2 |
1 files changed, 0 insertions, 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; } } |