]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
The SDMP plugin generates a warning message every 5 minutes when there is no
authorJohn Wolfe <jwolfe@vmware.com>
Wed, 19 Aug 2020 17:01:16 +0000 (10:01 -0700)
committerJohn Wolfe <jwolfe@vmware.com>
Wed, 19 Aug 2020 17:01:16 +0000 (10:01 -0700)
Namespace DB instance created on a VM.  Change the log level to
debug to solve the problem.

open-vm-tools/services/plugins/serviceDiscovery/serviceDiscovery.c

index 87dd58936d3f9c2b0eccfd3f3713d6f7a3542c32..c6c2e1dc3a6f9b01bee9f6d3f3ed3d16078252f6 100644 (file)
@@ -381,9 +381,9 @@ ReadData(ToolsAppCtx *ctx,
    status = SendRpcMessage(ctx, DynBuf_Get(&buf), DynBuf_GetSize(&buf),
                            resultData, resultDataLen);
    if (!status) {
-      g_warning("%s: Read over RPC failed, result: %s, resultDataLen: %" FMTSZ
-                "u\n", __FUNCTION__, (*resultData != NULL) ?
-                *resultData : "(null)", *resultDataLen);
+      g_debug("%s: Read over RPC failed, result: %s, resultDataLen: %" FMTSZ
+              "u\n", __FUNCTION__, (*resultData != NULL) ?
+              *resultData : "(null)", *resultDataLen);
    }
 done:
    DynBuf_Destroy(&buf);