Skip to content

Commit

Permalink
Disable logging of Ping data reception
Browse files Browse the repository at this point in the history
  • Loading branch information
rbraun committed Aug 9, 2016
1 parent 6daa3b7 commit 3cd58d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/ping.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ func pingSerialReader() {
s := scanner.Text()
// Trimspace removes newlines as well as whitespace
s = strings.TrimSpace(s)
logString := fmt.Sprintf("Ping received: %s", s)
log.Println(logString)
//logString := fmt.Sprintf("Ping received: %s", s)
//log.Println(logString)
if s[0] == '*' {
// 1090ES report
// Ping appends a signal strength at the end of the message
Expand Down

0 comments on commit 3cd58d2

Please sign in to comment.