From fb0a812d10b3463b3b8ccf0cefabffbab9a5b275 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 24 Jan 2018 22:38:18 -0800 Subject: [PATCH] Clarify emulated hue warning --- 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 1a3b6413d2cc6a..b2206f80766337 100644 --- a/homeassistant/components/emulated_hue/__init__.py +++ b/homeassistant/components/emulated_hue/__init__.py @@ -130,8 +130,9 @@ def __init__(self, hass, conf): 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)