From 9123dfce6d694b9c75be4fa4478405114ec02ea8 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 25 Jan 2018 02:20:37 -0800 Subject: [PATCH] Clarify emulated hue warning (#11910) --- homeassistant/components/emulated_hue/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/emulated_hue/__init__.py b/homeassistant/components/emulated_hue/__init__.py index 1a3b6413d2c..b2206f80766 100644 --- a/homeassistant/components/emulated_hue/__init__.py +++ b/homeassistant/components/emulated_hue/__init__.py @@ -130,8 +130,9 @@ class Config(object): self.cached_states = {} if self.type == TYPE_ALEXA: - _LOGGER.warning("Alexa type is deprecated and will be removed in a" - " future version") + _LOGGER.warning( + 'Emulated Hue running in legacy mode because type has been ' + 'specified. More info at https://goo.gl/M6tgz8') # Get the IP address that will be passed to the Echo during discovery self.host_ip_addr = conf.get(CONF_HOST_IP)