]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Changed a warning log message to debug message.
authorVMware, Inc <>
Wed, 18 Sep 2013 03:22:25 +0000 (20:22 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 23 Sep 2013 05:06:58 +0000 (22:06 -0700)
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 <dtor@vmware.com>
open-vm-tools/services/vmtoolsd/toolsRpc.c

index b2974922112f35f4f359e3f7c4b8c40d0db65161..0620edbf7bdf9ff781757c03f77f4723a9833bd6 100644 (file)
@@ -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();