We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 512ddc0 commit 2df2f84Copy full SHA for 2df2f84
telemetry_udp.go
@@ -66,9 +66,9 @@ func (t *AccTelemetry) connect() error {
66
t.RealtimeCarUpdate = realtimeCarUpdate
67
} else {
68
if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
69
- fmt.Printf("UDP read timeout, ACC may not be running: %s", netErr)
+ fmt.Printf("UDP read timeout, ACC may not be running: %s\n", netErr)
70
71
- fmt.Printf("UDP read failed: %s", err)
+ fmt.Printf("UDP read failed: %s\n", err)
72
}
73
74
time.Sleep(10 * time.Millisecond)
0 commit comments