Added a log message for the guest OS name and full name that is sent as
guestInfo. Messages are logged only when the guestInfo is successfully
updated to the VMX log.
return FALSE;
}
+ if (infoType == INFO_OS_NAME) {
+ g_message("Updated Guest OS name to %s\n", (char *) info);
+ } else if (infoType == INFO_OS_NAME_FULL) {
+ g_message("Updated Guest OS full name to %s\n", (char *) info);
+ }
+
/* Update the value in the cache as well. */
free(gInfoCache.value[infoType]);
gInfoCache.value[infoType] = Util_SafeStrdup((char *) info);