From: VMware, Inc <> Date: Wed, 18 Sep 2013 03:22:25 +0000 (-0700) Subject: Changed a warning log message to debug message. X-Git-Tag: 2013.09.16-1328054~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd70a7c37fa26eedfa6760606ead6c4bc43a56f6;p=thirdparty%2Fopen-vm-tools.git Changed a warning log message to debug message. If a tools service is running inside a non-VMware environment, we should not be filling the system logs with our warning messages. Signed-off-by: Dmitry Torokhov --- diff --git a/open-vm-tools/services/vmtoolsd/toolsRpc.c b/open-vm-tools/services/vmtoolsd/toolsRpc.c index b29749221..0620edbf7 100644 --- a/open-vm-tools/services/vmtoolsd/toolsRpc.c +++ b/open-vm-tools/services/vmtoolsd/toolsRpc.c @@ -241,8 +241,8 @@ ToolsCore_InitRpc(ToolsServiceState *state) * XXX: this should be relaxed when we try to bring up a VMCI or TCP channel. */ if (!state->ctx.isVMware) { - g_warning("The %s service needs to run inside a virtual machine.\n", - state->name); + g_debug("The %s service needs to run inside a virtual machine.\n", + state->name); state->ctx.rpc = NULL; } else { state->ctx.rpc = RpcChannel_New();