From 714d46b15333cf5b3b0e9bbf6c5d9b4beda73e14 Mon Sep 17 00:00:00 2001
From: Alex Yao <33379584+alexyao2015@users.noreply.github.com>
Date: Sun, 7 Aug 2022 14:47:49 -0500
Subject: [PATCH] Silence Yeelight Discovery Log Errors (#76373)

---
 homeassistant/components/yeelight/config_flow.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/homeassistant/components/yeelight/config_flow.py b/homeassistant/components/yeelight/config_flow.py
index b4afedd6c51..23a2a131913 100644
--- a/homeassistant/components/yeelight/config_flow.py
+++ b/homeassistant/components/yeelight/config_flow.py
@@ -269,7 +269,7 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
             await bulb.async_get_properties()
             await bulb.async_stop_listening()
         except (asyncio.TimeoutError, yeelight.BulbException) as err:
-            _LOGGER.error("Failed to get properties from %s: %s", host, err)
+            _LOGGER.debug("Failed to get properties from %s: %s", host, err)
             raise CannotConnect from err
         _LOGGER.debug("Get properties: %s", bulb.last_properties)
         return MODEL_UNKNOWN
-- 
GitLab