From: Dyno Hongjun Fu Date: Tue, 24 Nov 2015 06:17:12 +0000 (-0800) Subject: [Bug 1507819] Workaround fix to avoid rpc warning messages flooding by changing log... X-Git-Tag: stable-10.0.5~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8184e9291c7db41781c127d8541cc75ff243902a;p=thirdparty%2Fopen-vm-tools.git [Bug 1507819] Workaround fix to avoid rpc warning messages flooding by changing log level to debug. --- diff --git a/open-vm-tools/lib/rpcChannel/simpleSocket.c b/open-vm-tools/lib/rpcChannel/simpleSocket.c index b99822331..041b6f9b2 100644 --- a/open-vm-tools/lib/rpcChannel/simpleSocket.c +++ b/open-vm-tools/lib/rpcChannel/simpleSocket.c @@ -205,7 +205,7 @@ Socket_Recv(SOCKET fd, // IN while (remaining > 0) { rv = recv(fd, buf , remaining, 0); if (rv == 0) { - Warning(LGPFX "Socket %d closed by peer.", fd); + Debug(LGPFX "Socket %d closed by peer.", fd); return FALSE; } if (rv == SOCKET_ERROR) {