diff --git a/homeassistant/components/emulated_hue/__init__.py b/homeassistant/components/emulated_hue/__init__.py index b2399d748c9f57..d1a58ba941ec4a 100644 --- a/homeassistant/components/emulated_hue/__init__.py +++ b/homeassistant/components/emulated_hue/__init__.py @@ -136,7 +136,7 @@ def __init__(self, hass, conf): self.host_ip_addr = conf.get(CONF_HOST_IP) if self.host_ip_addr is None: self.host_ip_addr = util.get_local_ip() - _LOGGER.warning( + _LOGGER.info( "Listen IP address not specified, auto-detected address is %s", self.host_ip_addr) @@ -144,7 +144,7 @@ def __init__(self, hass, conf): self.listen_port = conf.get(CONF_LISTEN_PORT) if not isinstance(self.listen_port, int): self.listen_port = DEFAULT_LISTEN_PORT - _LOGGER.warning( + _LOGGER.info( "Listen port not specified, defaulting to %s", self.listen_port)