From 92fe9aadc8ad776512c25ebb5150c042bef87f1a Mon Sep 17 00:00:00 2001 From: Charles Garwood Date: Sat, 18 Nov 2017 14:04:09 -0500 Subject: [PATCH] Change some warnings to info (#10386) --- 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 b2399d748c9..d1a58ba941e 100644 --- a/homeassistant/components/emulated_hue/__init__.py +++ b/homeassistant/components/emulated_hue/__init__.py @@ -136,7 +136,7 @@ class Config(object): 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 @@ class Config(object): 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)