From b2e3b726d9d487f941f80c0596c8ec54c3dbe298 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 20 Apr 2018 16:01:43 +0200 Subject: [PATCH] Update gdbus.py --- hassio/misc/gdbus.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hassio/misc/gdbus.py b/hassio/misc/gdbus.py index 38ce1bac0..aee7f38a2 100644 --- a/hassio/misc/gdbus.py +++ b/hassio/misc/gdbus.py @@ -63,7 +63,9 @@ class Dbus(object): try: data = await self._send(command) except DBusError: - _LOGGER.w + _LOGGER.error( + "Dbus fails with %s on %s", method, self.object_path) + raise # Parse and return data return self._gvariant(data)