From 505d776cacfc191cbfa15fd77350f1dbfecb1675 Mon Sep 17 00:00:00 2001 From: G Johansson Date: Thu, 17 Sep 2026 18:29:20 +0200 Subject: [PATCH] Change logging to debug in dnsip (#182502) --- homeassistant/components/dnsip/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/dnsip/sensor.py b/homeassistant/components/dnsip/sensor.py index 8524e8e849a1..90febb05f3cf 100644 --- a/homeassistant/components/dnsip/sensor.py +++ b/homeassistant/components/dnsip/sensor.py @@ -153,7 +153,7 @@ class WanIpSensor(SensorEntity): await self._resolver.close() return ips except DNSError as err: - _LOGGER.warning("Exception while resolving host: %s", err) + _LOGGER.debug("Exception while resolving host: %s", err) await self._resolver.close() return ips