diff --git a/homeassistant/components/igd/__init__.py b/homeassistant/components/igd/__init__.py index 191b8c1fb72..305ac993b87 100644 --- a/homeassistant/components/igd/__init__.py +++ b/homeassistant/components/igd/__init__.py @@ -26,6 +26,7 @@ from homeassistant.components.discovery import DOMAIN as DISCOVERY_DOMAIN from .const import CONF_ENABLE_PORT_MAPPING, CONF_ENABLE_SENSORS from .const import DOMAIN from .const import LOGGER as _LOGGER +import homeassistant.components.igd.config_flow # register the handler REQUIREMENTS = ['async-upnp-client==0.12.4'] diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index a52484b6941..93c904d3b91 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -414,7 +414,6 @@ class ConfigEntries: Handler key is the domain of the component that we want to set up. """ component = getattr(self.hass.components, handler_key) - _LOGGER.debug('Handler key: %s', handler_key) handler = HANDLERS.get(handler_key) if handler is None: