From: Alessandro Astone Date: Fri, 20 Jan 2023 00:23:31 +0000 (+0100) Subject: session: Dump the full exception to log file when failed to start X-Git-Tag: 1.4.0~34 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/commitdiff_plain/91b3e7047fea6e5b1b1fd2322bc1c663440afe96?ds=sidebyside session: Dump the full exception to log file when failed to start --- 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")