From 652313a53284c33460169e188328a0180d31d10c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Thu, 3 Oct 2019 09:22:42 +0200 Subject: [PATCH] Remove debug printout --- custom_components/favicon/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/custom_components/favicon/__init__.py b/custom_components/favicon/__init__.py index 7aa490f..89d2a91 100644 --- a/custom_components/favicon/__init__.py +++ b/custom_components/favicon/__init__.py @@ -45,14 +45,11 @@ async def async_remove_entry(hass, config_entry): async def _update_listener(hass, config_entry): conf = config_entry.options - _LOGGER.error(conf) if CONFIG_ICON_PATH in hass.data[DOMAIN]: del hass.data[DOMAIN][CONFIG_ICON_PATH] if CONFIG_TITLE in hass.data[DOMAIN]: del hass.data[DOMAIN][CONFIG_TITLE] - _LOGGER.error(hass.data[DOMAIN]) hass.data[DOMAIN].update(conf) - _LOGGER.error(hass.data[DOMAIN]) return apply_hooks(hass)