Skip to content

Commit

Permalink
All info level
Browse files Browse the repository at this point in the history
    * custom_components/daikin_onecta/climate.py:
  • Loading branch information
jwillemsen committed Feb 26, 2024
1 parent 39c0274 commit 2daa612
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions custom_components/daikin_onecta/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def get_current_temperature(self):
else:
if setpointdict is not None:
currentTemp = setpointdict["value"]
_LOGGER.debug(
_LOGGER.info(
"Device '%s': %s current temperature '%s'",
self._device.name,
self._setpoint,
Expand All @@ -323,7 +323,7 @@ def get_max_temp(self):
setpointdict = self.setpoint()
if setpointdict is not None:
maxTemp = setpointdict["maxValue"]
_LOGGER.debug(
_LOGGER.info(
"Device '%s': %s max temperature '%s'",
self._device.name,
self._setpoint,
Expand All @@ -336,7 +336,7 @@ def get_min_temp(self):
setpointdict = self.setpoint()
if setpointdict is not None:
minValue = setpointdict["minValue"]
_LOGGER.debug(
_LOGGER.info(
"Device '%s': %s min temperature '%s'",
self._device.name,
self._setpoint,
Expand All @@ -349,7 +349,7 @@ def get_target_temperature(self):
setpointdict = self.setpoint()
if setpointdict is not None:
value = setpointdict["value"]
_LOGGER.debug(
_LOGGER.info(
"Device '%s': %s target temperature '%s'",
self._device.name,
self._setpoint,
Expand All @@ -362,7 +362,7 @@ def get_target_temperature_step(self):
setpointdict = self.setpoint()
if setpointdict is not None:
stepValue = setpointdict["stepValue"]
_LOGGER.debug(
_LOGGER.info(
"Device '%s': %s target temperature step '%s'",
self._device.name,
self._setpoint,
Expand Down

0 comments on commit 2daa612

Please sign in to comment.