From fd453780414dd608c315877b86397c04e594362b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Thu, 14 Dec 2017 02:13:27 +0100 Subject: [PATCH] api/admin: make libvirt start error more informative Point where to look for details. --- qubes/api/admin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qubes/api/admin.py b/qubes/api/admin.py index d5a0060a..7a1a66e6 100644 --- a/qubes/api/admin.py +++ b/qubes/api/admin.py @@ -772,7 +772,8 @@ class QubesAdminAPI(qubes.api.AbstractQubesAPI): yield from self.dest.start() except libvirt.libvirtError as e: # change to QubesException, so will be reported to the user - raise qubes.exc.QubesException('Start failed: ' + str(e)) + raise qubes.exc.QubesException('Start failed: ' + str(e) + + ', see /var/log/libvirt/libxl/libxl-driver.log for details') @qubes.api.method('admin.vm.Shutdown', no_payload=True,