Skip to content

Commit b311843

Browse files
committed
Combine loggers
1 parent a8f1d2e commit b311843

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

plugwise_usb/nodes/helpers/pulses.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,12 @@ def update_pulse_counter(
322322
self._rollover_production = True
323323

324324
self._pulses_consumption = pulses_consumed
325-
_LOGGER.debug("update_pulse_counter | consumption pulses=%s", self._pulses_consumption)
326325
self._pulses_production = pulses_produced
327-
_LOGGER.debug("update_pulse_counter | production pulses=%s", self._pulses_production)
326+
_LOGGER.debug(
327+
"update_pulse_counter | consumption pulses=%s | production pulses=%s",
328+
self._pulses_consumption,
329+
self._pulses_production,
330+
)
328331

329332
def _update_rollover(self) -> None:
330333
"""Update rollover states.

0 commit comments

Comments
 (0)