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 a8f1d2e commit b311843Copy full SHA for b311843
plugwise_usb/nodes/helpers/pulses.py
@@ -322,9 +322,12 @@ def update_pulse_counter(
322
self._rollover_production = True
323
324
self._pulses_consumption = pulses_consumed
325
- _LOGGER.debug("update_pulse_counter | consumption pulses=%s", self._pulses_consumption)
326
self._pulses_production = pulses_produced
327
- _LOGGER.debug("update_pulse_counter | production pulses=%s", self._pulses_production)
+ _LOGGER.debug(
+ "update_pulse_counter | consumption pulses=%s | production pulses=%s",
328
+ self._pulses_consumption,
329
+ self._pulses_production,
330
+ )
331
332
def _update_rollover(self) -> None:
333
"""Update rollover states.
0 commit comments