We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24af1d9 commit 51ced41Copy full SHA for 51ced41
plugwise/common.py
@@ -10,6 +10,7 @@
10
from plugwise.constants import (
11
ANNA,
12
GROUP_TYPES,
13
+ LOGGER,
14
NONE,
15
PRIORITY_DEVICE_CLASSES,
16
SPECIAL_PLUG_TYPES,
@@ -213,6 +214,7 @@ def _get_groups(self) -> dict[str, GwEntityData]:
213
214
group_sensors = {}
215
group_logs = group.findall("logs")
216
for log in group_logs:
217
+ LOGGER.debug("HOI log: %s", etree.tostring(log))
218
log_type = log.find("type").text
219
measurement = log.find("period/measurement")
220
if measurement is not None:
0 commit comments