Skip to content

Commit f829b2c

Browse files
committed
Reduced logging
* custom_components/daikin_residential_altherma/sensor.py: * custom_components/daikin_residential_altherma/switch.py:
1 parent 7bbbc13 commit f829b2c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

custom_components/daikin_residential_altherma/sensor.py

-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ def state(self):
217217
management_point = management_point.get(self._sub_type).get("value")
218218
cd = management_point.get(self._value)
219219
if cd is not None:
220-
_LOGGER.info("Device '%s' provides value %s", self._device.name, self._value)
221220
result = cd.get("value")
222221
_LOGGER.debug("Device '%s' sensor '%s' value '%s'", self._device.name, self._value, result)
223222
return result

custom_components/daikin_residential_altherma/switch.py

-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ def is_on(self):
108108
if self._management_point_type == management_point_type:
109109
cd = management_point.get(self._value)
110110
if cd is not None:
111-
_LOGGER.info("Device '%s' provides value %s", self._device.name, self._value)
112111
result = cd.get("value")
113112
_LOGGER.debug("Device '%s' switch '%s' value '%s'", self._device.name, self._value, result)
114113
return result == "on"

0 commit comments

Comments
 (0)