From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36873) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ypxxh-0006mO-Bt for qemu-devel@nongnu.org; Wed, 06 May 2015 07:58:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ypxxg-0006sF-Fs for qemu-devel@nongnu.org; Wed, 06 May 2015 07:58:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55343) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ypxxg-0006s3-AJ for qemu-devel@nongnu.org; Wed, 06 May 2015 07:58:00 -0400 From: Yossi Hindin Date: Wed, 6 May 2015 14:57:38 +0300 Message-Id: <1430913460-13174-3-git-send-email-yhindin@redhat.com> In-Reply-To: <1430913460-13174-1-git-send-email-yhindin@redhat.com> References: <1430913460-13174-1-git-send-email-yhindin@redhat.com> Subject: [Qemu-devel] [Patch V2 2/4] qemu-ga: debug printouts to help troubleshoot installation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, Yossi Hindin , mdroth@linux.vnet.ibm.com Debug printouts extended, helps installation troubleshooting Signed-off-by: Yossi Hindin --- qga/channel-win32.c | 2 +- qga/commands-win32.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/qga/channel-win32.c b/qga/channel-win32.c index 0d5e5f5..04fa5e4 100644 --- a/qga/channel-win32.c +++ b/qga/channel-win32.c @@ -306,7 +306,7 @@ static gboolean ga_channel_open(GAChannel *c, GAChannelMethod method, OPEN_EXISTING, FILE_FLAG_NO_BUFFERING | FILE_FLAG_OVERLAPPED, NULL); if (c->handle == INVALID_HANDLE_VALUE) { - g_critical("error opening path"); + g_critical("error opening path %s", newpath); return false; } diff --git a/qga/commands-win32.c b/qga/commands-win32.c index 3ef0549..d0aaec7 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -721,6 +721,7 @@ GList *ga_command_blacklist_init(GList *blacklist) } if (!vss_init(true)) { + g_debug("vss_init failed, vss commands are going to be disabled"); const char *list[] = { "guest-get-fsinfo", "guest-fsfreeze-status", "guest-fsfreeze-freeze", "guest-fsfreeze-thaw", NULL}; -- 2.1.0