From f3c6f665af8082e0e7c09001d7aa73a381d4e6fa Mon Sep 17 00:00:00 2001 From: jjlawren Date: Thu, 30 Apr 2020 02:10:02 -0500 Subject: [PATCH] Reduce log level for WebOS connection error (#34904) --- 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 f0a059fc5b8..a441a70888b 100644 --- a/homeassistant/components/webostv/__init__.py +++ b/homeassistant/components/webostv/__init__.py @@ -145,7 +145,7 @@ async def async_setup_tv_finalize(hass, config, conf, client): 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), )