Skip to content

Commit

Permalink
Merge 77b6494 into b5e4309
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Oct 29, 2019
2 parents b5e4309 + 77b6494 commit e2cf9a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion androidtv/androidtv.py
Expand Up @@ -225,7 +225,7 @@ def get_properties(self, lazy=False):
output = self._adb.shell(constants.CMD_ANDROIDTV_PROPERTIES_LAZY)
else:
output = self._adb.shell(constants.CMD_ANDROIDTV_PROPERTIES_NOT_LAZY)
_LOGGER.debug("Android TV %s update response: %s", self.host, output)
_LOGGER.debug("Android TV %s `get_properties` response: %s", self.host, output)

# ADB command was unsuccessful
if output is None:
Expand Down
2 changes: 2 additions & 0 deletions androidtv/basetv.py
Expand Up @@ -181,6 +181,8 @@ def get_device_properties(self):
constants.CMD_MAC_WLAN0 + " && " +
constants.CMD_MAC_ETH0)

_LOGGER.debug("%s `get_device_properties` response: %s", self.host, properties)

if not properties:
return {}

Expand Down
2 changes: 1 addition & 1 deletion androidtv/firetv.py
Expand Up @@ -322,7 +322,7 @@ def get_properties(self, get_running_apps=True, lazy=False):
output = self._adb.shell(constants.CMD_FIRETV_PROPERTIES_NOT_LAZY_RUNNING_APPS)
else:
output = self._adb.shell(constants.CMD_FIRETV_PROPERTIES_NOT_LAZY_NO_RUNNING_APPS)
_LOGGER.debug("Fire TV %s update response: %s", self.host, output)
_LOGGER.debug("Fire TV %s `get_properties` response: %s", self.host, output)

# ADB command was unsuccessful
if output is None:
Expand Down

0 comments on commit e2cf9a5

Please sign in to comment.