Skip to content

Commit

Permalink
Use logger.debug more consistently for UART endpoint (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperl committed Jan 22, 2024
1 parent 5d14fa6 commit ff7608a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uart.toit
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ class UartClient:
this.reader = BufferedReader reader

run -> none:
logger.info "announcing endpoint"
announce
sync
// We are synchronized. This means that something is listening on the other end.
Expand All @@ -122,6 +121,7 @@ class UartClient:
proxy has a way to resynchronize with the endpoint.
*/
announce -> none:
logger.debug "announcing endpoint"
send "Jaguar endpoint: $device.name ($device.id)\n".to-byte-array

/**
Expand Down

0 comments on commit ff7608a

Please sign in to comment.