Skip to content

Commit

Permalink
fix: Add protocol to log message
Browse files Browse the repository at this point in the history
  • Loading branch information
allenporter committed Jan 6, 2025
1 parent dd3e78a commit 0b31e56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion roborock/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,10 @@ def _async_response(
if request_id in self._waiting_queue:
new_id = get_next_int(10000, 32767)
_LOGGER.warning(
"Attempting to create a future with an existing id %s... New id is %s. "
"Attempting to create a future with an existing id %s (%s)... New id is %s. "
"Code may not function properly.",
request_id,
protocol_id,
new_id,
)
request_id = new_id
Expand Down

0 comments on commit 0b31e56

Please sign in to comment.