diff options
author | Mark D. Roth <roth@google.com> | 2016-09-09 10:54:06 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-09-09 10:54:06 -0700 |
commit | a4a223fb87ae407bda044f16cba3750d169a33f4 (patch) | |
tree | 0c30bc8c427bfb37a55ac9509df0a30bca776d8c /src/core | |
parent | d66a602de050e3b8c32e67517b0ca23477e5e3a8 (diff) |
Fix Windows no_logging test failure.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/iomgr/socket_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/socket_windows.c b/src/core/lib/iomgr/socket_windows.c index d7d5f6f157..78ef46d042 100644 --- a/src/core/lib/iomgr/socket_windows.c +++ b/src/core/lib/iomgr/socket_windows.c @@ -84,7 +84,7 @@ void grpc_winsocket_shutdown(grpc_winsocket *winsocket) { DisconnectEx(winsocket->socket, NULL, 0, 0); } else { char *utf8_message = gpr_format_message(WSAGetLastError()); - gpr_log(GPR_ERROR, "Unable to retrieve DisconnectEx pointer : %s", + gpr_log(GPR_INFO, "Unable to retrieve DisconnectEx pointer : %s", utf8_message); gpr_free(utf8_message); } |