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 3f4e8bc commit c9ad42aCopy full SHA for c9ad42a
plugwise_usb/nodes/circle.py
@@ -496,6 +496,7 @@ async def energy_log_update(self, address: int | None) -> bool:
496
)
497
return False
498
499
+ _LOGGER.debug("EnergyLogs data from %s", address)
500
await self._available_update_state(True, response.timestamp)
501
energy_record_update = False
502
@@ -505,7 +506,7 @@ async def energy_log_update(self, address: int | None) -> bool:
505
506
for _slot in range(4, 0, -1):
507
log_timestamp, log_pulses = response.log_data[_slot]
508
_LOGGER.debug(
- "Energy data from slot=%s: pulses=%s, timestamp=%s",
509
+ "In slot=%s: pulses=%s, timestamp=%s",
510
_slot,
511
log_pulses,
512
log_timestamp
0 commit comments