From 5d167747b0294a262da2519208776d6f55e2f4aa Mon Sep 17 00:00:00 2001 From: Charles Garwood Date: Sun, 5 Nov 2017 15:01:20 -0500 Subject: [PATCH] Change some warnings to info --- homeassistant/components/emulated_hue/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)