Skip to content

Commit ae8eed6

Browse files
committed
chore: fix logging
1 parent e293bc8 commit ae8eed6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roborock/devices/device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ async def connect_loop() -> None:
171171
except Exception as e: # pylint: disable=broad-except
172172
if not start_attempt.done():
173173
start_attempt.set_exception(e)
174-
self._logger.exception("Unexpected error during connect: %s", e)
174+
self._logger.exception("Uncaught error during connect: %s", e)
175175
break
176176
except asyncio.CancelledError:
177177
if not start_attempt.done():

0 commit comments

Comments
 (0)