From: VMware, Inc <> Date: Wed, 18 Sep 2013 03:34:03 +0000 (-0700) Subject: HGFS: Improve Linux client logging X-Git-Tag: 2013.09.16-1328054~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1bebef1add802f897e3fc120afb66833343359e;p=thirdparty%2Fopen-vm-tools.git HGFS: Improve Linux client logging Minor improvements to improve the logging of messages during debugging. Remove the less than helpful messages that are extremely chatty. Signed-off-by: Dmitry Torokhov --- diff --git a/open-vm-tools/modules/linux/vmhgfs/request.c b/open-vm-tools/modules/linux/vmhgfs/request.c index f0d3b7474..71758371e 100644 --- a/open-vm-tools/modules/linux/vmhgfs/request.c +++ b/open-vm-tools/modules/linux/vmhgfs/request.c @@ -173,13 +173,12 @@ HgfsSendRequest(HgfsReq *req) // IN/OUT: Outgoing request ASSERT(req); ASSERT(req->payloadSize <= req->bufferSize); - LOG(4, (KERN_WARNING "Size of buffer %Zu\n", req->bufferSize)); req->state = HGFS_REQ_STATE_UNSENT; - LOG(8, (KERN_DEBUG "VMware hgfs: HgfsSendRequest: Sending request id %d\n", + LOG(10, (KERN_DEBUG "VMware hgfs: HgfsSendRequest: Sending request id %d\n", req->id)); ret = HgfsTransportSendRequest(req); - LOG(8, (KERN_DEBUG "VMware hgfs: HgfsSendRequest: request finished, " + LOG(10, (KERN_DEBUG "VMware hgfs: HgfsSendRequest: request finished, " "return %d\n", ret)); return ret;