Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

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: 1 addition & 1 deletion deepgram/clients/agent/v1/websocket/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ async def finish(self) -> bool:
return True

except asyncio.CancelledError as e:
self._logger.error("tasks cancelled error: %s", e)
self._logger.debug("tasks cancelled error: %s", e)
self._logger.debug("AsyncAgentWebSocketClient.finish LEAVE")
return False

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/common/v1/abstract_async_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ async def finish(self) -> bool:
return True

except asyncio.CancelledError as e:
self._logger.error("tasks cancelled error: %s", e)
self._logger.debug("tasks cancelled error: %s", e)
self._logger.debug("AbstractAsyncWebSocketClient.finish LEAVE")
return True

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/listen/v1/websocket/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ async def finish(self) -> bool:
return True

except asyncio.CancelledError as e:
self._logger.error("tasks cancelled error: %s", e)
self._logger.debug("tasks cancelled error: %s", e)
self._logger.debug("AsyncListenWebSocketClient.finish LEAVE")
return False

Expand Down