Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove "Checking battery" log message #1151

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,5 @@ This release includes a new `ConfigManager` class to simplify managing the confi
- 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.

- Fix a bug where if a string was passed to the `ConfigManagingActor` it would be interpreted as a sequence of 1 character strings.

- Remove a confusing log message in the power distributing actor.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,6 @@ def _check_request(
return Error(request=request, msg="Empty battery IDs in the request")

for battery in request.component_ids:
_logger.debug("Checking battery %d", battery)
if battery not in self._battery_caches:
msg = (
f"No battery {battery}, available batteries: "
Expand Down
Loading