From ff7608a719f225d03deaea178b1be1542cbc0c18 Mon Sep 17 00:00:00 2001 From: Kasper Lund Date: Mon, 22 Jan 2024 09:36:25 +0100 Subject: [PATCH] Use logger.debug more consistently for UART endpoint (#482) --- src/uart.toit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uart.toit b/src/uart.toit index ee6adda9..a9ddf511 100644 --- a/src/uart.toit +++ b/src/uart.toit @@ -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. @@ -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 /**