Skip to content

Commit 373777e

Browse files
committed
Remove added debug-logging
1 parent b6104e7 commit 373777e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

plugwise_usb/nodes/circle.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,6 @@ async def power_update(self) -> PowerStatistics | None:
294294
295295
Return power usage or None if retrieval failed
296296
"""
297-
_LOGGER.debug("Requesting a PowerStatistics update for %s", self._mac_in_str)
298297
# Debounce power
299298
if self.skip_update(self._power, MINIMAL_POWER_UPDATE):
300299
return self._power
@@ -350,7 +349,6 @@ def _log_no_energy_stats_update(self) -> None:
350349
@raise_calibration_missing
351350
async def energy_update(self) -> EnergyStatistics | None: # noqa: PLR0911 PLR0912
352351
"""Return updated energy usage statistics."""
353-
_LOGGER.debug("Requesting an EnergyStatistics update for %s", self._mac_in_str)
354352
if self._current_log_address is None:
355353
_LOGGER.debug(
356354
"Unable to update energy logs for node %s because the current log address is unknown.",
@@ -371,11 +369,6 @@ async def energy_update(self) -> EnergyStatistics | None: # noqa: PLR0911 PLR09
371369
self._current_log_address
372370
)
373371

374-
_LOGGER.debug(
375-
"Rollover status for %s: %s",
376-
self._mac_in_str,
377-
self._energy_counters.log_rollover,
378-
)
379372
if self._energy_counters.log_rollover:
380373
# Try updating node_info to collect the updated energy log address
381374
if await self.node_info_update() is None:

0 commit comments

Comments
 (0)