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 27bd8ca commit 1857baeCopy full SHA for 1857bae
plugwise_usb/nodes/circle.py
@@ -504,7 +504,12 @@ async def energy_log_update(self, address: int | None) -> bool:
504
# energy pulses collected during the previous hour of given timestamp
505
for _slot in range(4, 0, -1):
506
log_timestamp, log_pulses = response.log_data[_slot]
507
-
+ _LOGGER.debug(
508
+ "Energy data from slot=%s: pulses=%s, timestamp=%s",
509
+ _slot,
510
+ log_pulses,
511
+ log_timestamp
512
+ )
513
if log_timestamp is None or log_pulses is None:
514
self._energy_counters.add_empty_log(response.log_address, _slot)
515
elif await self._energy_log_record_update_state(
0 commit comments