Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenthebuilder committed Apr 29, 2024
1 parent bda0dcb commit 6caf241
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions replit_river/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,11 @@ async def send_message(
prefix_bytes=self._transport_options.get_prefix_bytes(),
)
except WebsocketClosedException as e:
logging.error(
f"Connection closed while sending message : {e}, waiting for "
"retry from buffer"
logging.debug(
"Connection closed while sending message %r: %r, waiting for "
"retry from buffer",
type(e),
e,
)
except FailedSendingMessageException as e:
logging.error(
Expand Down

0 comments on commit 6caf241

Please sign in to comment.