From c6dd715763842e5aed67ffec44735739858c085c Mon Sep 17 00:00:00 2001 From: "Teemu R." Date: Sun, 12 Oct 2025 17:51:52 +0200 Subject: [PATCH] Use log-level debug for smartdevice query error reporting (#1587) --- kasa/smart/smartdevice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kasa/smart/smartdevice.py b/kasa/smart/smartdevice.py index 2e2dc7cd..87aa628d 100644 --- a/kasa/smart/smartdevice.py +++ b/kasa/smart/smartdevice.py @@ -378,7 +378,7 @@ class SmartDevice(Device): """ msg_part = "on first update" if first_update else "after first update" - _LOGGER.error( + _LOGGER.debug( "Error querying %s for modules '%s' %s: %s", self.host, module_names, @@ -391,7 +391,7 @@ class SmartDevice(Device): resp = await self.protocol.query({meth: params}) responses[meth] = resp[meth] except Exception as iex: - _LOGGER.error( + _LOGGER.debug( "Error querying %s individually for module query '%s' %s: %s", self.host, meth,