Skip to content

Commit 98fec4b

Browse files
authored
Remove "Checking battery" log message (frequenz-floss#1151)
It is not providing any useful information or details about its context, and it is too noisy.
2 parents 6fd906b + 51584f0 commit 98fec4b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,5 @@ This release includes a new `ConfigManager` class to simplify managing the confi
6161
- Fix a bug in `BackgroundService` where it won't try to `self.cancel()` and `await self.wait()` if there are no internal tasks. This prevented to properly implement custom stop logic without having to redefine the `stop()` method too.
6262

6363
- Fix a bug where if a string was passed to the `ConfigManagingActor` it would be interpreted as a sequence of 1 character strings.
64+
65+
- Remove a confusing log message in the power distributing actor.

src/frequenz/sdk/microgrid/_power_distributing/_component_managers/_battery_manager.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,6 @@ def _check_request(
400400
return Error(request=request, msg="Empty battery IDs in the request")
401401

402402
for battery in request.component_ids:
403-
_logger.debug("Checking battery %d", battery)
404403
if battery not in self._battery_caches:
405404
msg = (
406405
f"No battery {battery}, available batteries: "

0 commit comments

Comments
 (0)