Skip to content
Snippets Groups Projects
Commit 1dc323b4 authored by Craig Tiller's avatar Craig Tiller
Browse files

Spam cleanup

parent 207e6449
No related branches found
No related tags found
No related merge requests found
...@@ -201,7 +201,6 @@ static grpc_endpoint_op_status win_read(grpc_endpoint *ep, ...@@ -201,7 +201,6 @@ static grpc_endpoint_op_status win_read(grpc_endpoint *ep,
/* Did we get data immediately ? Yay. */ /* Did we get data immediately ? Yay. */
if (info->wsa_error != WSAEWOULDBLOCK) { if (info->wsa_error != WSAEWOULDBLOCK) {
info->bytes_transfered = bytes_read; 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; 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, ...@@ -214,7 +213,6 @@ static grpc_endpoint_op_status win_read(grpc_endpoint *ep,
int wsa_error = WSAGetLastError(); int wsa_error = WSAGetLastError();
if (wsa_error != WSA_IO_PENDING) { if (wsa_error != WSA_IO_PENDING) {
info->wsa_error = wsa_error; 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; return on_read(tcp, 1) ? GRPC_ENDPOINT_DONE : GRPC_ENDPOINT_ERROR;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment