Skip to content

Commit 2df2f84

Browse files
committed
cleanup prints
1 parent 512ddc0 commit 2df2f84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

telemetry_udp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ func (t *AccTelemetry) connect() error {
6666
t.RealtimeCarUpdate = realtimeCarUpdate
6767
} else {
6868
if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
69-
fmt.Printf("UDP read timeout, ACC may not be running: %s", netErr)
69+
fmt.Printf("UDP read timeout, ACC may not be running: %s\n", netErr)
7070
} else {
71-
fmt.Printf("UDP read failed: %s", err)
71+
fmt.Printf("UDP read failed: %s\n", err)
7272
}
7373
}
7474
time.Sleep(10 * time.Millisecond)

0 commit comments

Comments
 (0)