From 71d7ae5992c8a2241c6ddbb73492264cb6688f00 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 8 Feb 2021 11:48:02 -1000 Subject: [PATCH] Downgrade and improve lutron caseta LIP error message (#46236) --- homeassistant/components/lutron_caseta/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/lutron_caseta/__init__.py b/homeassistant/components/lutron_caseta/__init__.py index 73eb0b83fa6..220096fe0bf 100644 --- a/homeassistant/components/lutron_caseta/__init__.py +++ b/homeassistant/components/lutron_caseta/__init__.py @@ -158,7 +158,11 @@ async def async_setup_lip(hass, config_entry, lip_devices): try: await lip.async_connect(host) except asyncio.TimeoutError: - _LOGGER.error("Failed to connect to via LIP at %s:23", host) + _LOGGER.warning( + "Failed to connect to via LIP at %s:23, Pico and Shade remotes will not be available; " + "Enable Telnet Support in the Lutron app under Settings >> Advanced >> Integration", + host, + ) return _LOGGER.debug("Connected to Lutron Caseta bridge via LIP at %s:23", host)