remove debug printouts

This commit is contained in:
2019-06-27 15:36:17 +02:00
parent 0243cf2d05
commit 136ca6ac50
5 changed files with 4 additions and 19 deletions

View File

@@ -38,13 +38,11 @@ class BrowserModPlayer(MediaPlayerDevice, BrowserModEntity):
def __init__(self, hass, deviceID, alias=None):
super().__init__(hass, deviceID, alias)
_LOGGER.error(f"Create player {deviceID}({alias})")
@property
def device_state_attributes(self):
return {
"player": self._ws_data.get("player"),
"browser": self._ws_data.get("browser"),
**self._ws_data.get("browser", {}),
}
@property