Skip to content

Commit

Permalink
chore: change from warning to exception
Browse files Browse the repository at this point in the history
  • Loading branch information
jrriehl committed Dec 14, 2023
1 parent 34d8b61 commit 4baa37d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/uagents/wallet_messaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async def send(self, destination: str, msg: str, msg_type: int = 1):
try:
self._client.send(destination, msg, msg_type)
except Exception as ex:
self._logger.warning(f"Failed to send message to {destination}: {ex}")
self._logger.exception(f"Failed to send message to {destination}: {ex}")

async def poll_server(self):
self._logger.info("Connecting to wallet messaging server")
Expand Down

0 comments on commit 4baa37d

Please sign in to comment.