Skip to content

Commit

Permalink
Trying to catch Exception error in uart mode
Browse files Browse the repository at this point in the history
  • Loading branch information
EinEinfach committed Jun 18, 2024
1 parent df7c3e0 commit 5caa3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CaSSAndRA/src/backend/comm/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def check_buffer(self) -> None:
self.on_obstacle(data)
except Exception as e:
logger.warning('Exception in communication occured, trying to reconnect')
logger.debug(str(e))
logger.warning(str(e))
self.client.close()
self.uart_status = False

Expand Down

0 comments on commit 5caa3bb

Please sign in to comment.