From 138bb12f9825332b22fd13163f3d35204716f702 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 13 Aug 2019 21:25:04 +0200 Subject: [PATCH] Add debug output to gdbus (#1203) --- hassio/utils/gdbus.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hassio/utils/gdbus.py b/hassio/utils/gdbus.py index d910a40f5..ff0f26dee 100644 --- a/hassio/utils/gdbus.py +++ b/hassio/utils/gdbus.py @@ -142,6 +142,7 @@ class DBus: data = await self._send(command) # Parse and return data + _LOGGER.debug("Receive from %s: %s", method, data) return self.parse_gvariant(data) async def get_properties(self, interface):