Skip to content

Commit

Permalink
improve log message
Browse files Browse the repository at this point in the history
  • Loading branch information
msp1974 committed Dec 26, 2023
1 parent 9e76288 commit 5dafea7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aioWiserHeatAPI/room.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5dafea7

Please sign in to comment.