From 5dafea781dc11c2256d42f37c34f8146332ddeec Mon Sep 17 00:00:00 2001 From: Mark Parker Date: Tue, 26 Dec 2023 16:34:31 +0000 Subject: [PATCH] improve log message --- aioWiserHeatAPI/room.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aioWiserHeatAPI/room.py b/aioWiserHeatAPI/room.py index 1bbcad8..a9615f3 100644 --- a/aioWiserHeatAPI/room.py +++ b/aioWiserHeatAPI/room.py @@ -468,8 +468,8 @@ async def set_preset(self, preset: WiserPresetOptionsEnum | str): elif preset.lower().startswith(TEXT_BOOST.lower()): # Lookup boost duration duration = WISER_BOOST_DURATION[preset] - _LOGGER.info( - f"Boosting by {self._boost_temperature_delta} for {duration}" + _LOGGER.debug( + f"Boosting by {self._boost_temperature_delta}C for {duration} mins" ) await self.boost(self._boost_temperature_delta, duration) else: