From 91b3e7047fea6e5b1b1fd2322bc1c663440afe96 Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Fri, 20 Jan 2023 01:23:31 +0100 Subject: [PATCH] session: Dump the full exception to log file when failed to start --- tools/actions/session_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/actions/session_manager.py b/tools/actions/session_manager.py index 2421256..a2e7739 100644 --- a/tools/actions/session_manager.py +++ b/tools/actions/session_manager.py @@ -88,6 +88,7 @@ def start(args, unlocked_cb=None): tools.helpers.ipc.DBusContainerService().Start(session) except dbus.DBusException as e: if e.get_dbus_name().startswith("org.freedesktop.DBus.Python"): + logging.debug(e) logging.error(e.get_dbus_message().splitlines()[-1]) else: logging.error("WayDroid container is not listening") -- 2.47.3