From b608dcb2eb58de16f87676ab7d8efccf4c6709d0 Mon Sep 17 00:00:00 2001 From: Petro31 <35082313+Petro31@users.noreply.github.com> Date: Sun, 14 Dec 2025 10:52:38 -0500 Subject: [PATCH] Update unnecessary error logging of unknown and unavailable source states from mold indicator (#158979) --- homeassistant/components/mold_indicator/sensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/mold_indicator/sensor.py b/homeassistant/components/mold_indicator/sensor.py index 62906ea65aeb..206e25433e27 100644 --- a/homeassistant/components/mold_indicator/sensor.py +++ b/homeassistant/components/mold_indicator/sensor.py @@ -315,7 +315,7 @@ class MoldIndicator(SensorEntity): # Return an error if the sensor change its state to Unknown. if state.state in (STATE_UNKNOWN, STATE_UNAVAILABLE): - _LOGGER.error( + _LOGGER.debug( "Unable to parse temperature sensor %s with state: %s", state.entity_id, state.state, @@ -352,7 +352,7 @@ class MoldIndicator(SensorEntity): # Return an error if the sensor change its state to Unknown. if state.state in (STATE_UNKNOWN, STATE_UNAVAILABLE): - _LOGGER.error( + _LOGGER.debug( "Unable to parse humidity sensor %s, state: %s", state.entity_id, state.state,