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

@@ -9,10 +9,8 @@ from .const import DOMAIN, DATA_DEVICES, DATA_ALIASES, DATA_ADDERS, CONFIG_DEVIC
_LOGGER = logging.getLogger(__name__)
async def async_setup(hass, config):
_LOGGER.error(f"Setting up browser_mod")
setup_view(hass)
_LOGGER.error(f"Registered frontend script")
aliases = {}
for d in config[DOMAIN].get(CONFIG_DEVICES, {}):
@@ -28,9 +26,6 @@ async def async_setup(hass, config):
await hass.helpers.discovery.async_load_platform("media_player", DOMAIN, {}, config)
_LOGGER.error(f"Set up media_player")
_LOGGER.error(hass.data[DOMAIN][DATA_ADDERS])
setup_connection(hass)
setup_service(hass)