From 0b31e5622907610ec6cece67ca4afbe01a87899d Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Sun, 5 Jan 2025 20:32:59 -0800 Subject: [PATCH] fix: Add protocol to log message --- roborock/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roborock/api.py b/roborock/api.py index e40cf4d..5b17eff 100644 --- a/roborock/api.py +++ b/roborock/api.py @@ -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