From 237342935e9e477b966238b6b9797091927169ea Mon Sep 17 00:00:00 2001 From: Jason Lawrence Date: Wed, 29 Apr 2020 17:54:45 -0500 Subject: [PATCH] Reduce log level for WebOS connection error --- homeassistant/components/webostv/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/webostv/__init__.py b/homeassistant/components/webostv/__init__.py index f0a059fc5b8bd..a441a70888b50 100644 --- a/homeassistant/components/webostv/__init__.py +++ b/homeassistant/components/webostv/__init__.py @@ -145,7 +145,7 @@ async def async_load_platforms(_): if client.connection is None: async_call_later(hass, 60, async_load_platforms) - _LOGGER.warning( + _LOGGER.debug( "No connection could be made with host %s, retrying in 60 seconds", conf.get(CONF_HOST), )