Add debug output to gdbus (#1203)

This commit is contained in:
Pascal Vizeli 2019-08-13 21:25:04 +02:00 committed by GitHub
parent 4fe2859f4e
commit 138bb12f98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):