Skip to content

Commit

Permalink
Send "Time Limit Reached" to stderr. Fixes #76
Browse files Browse the repository at this point in the history
  • Loading branch information
bemasher committed Jun 22, 2017
1 parent bf6b099 commit 5910c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func (rcvr *Receiver) Run() {
case <-sigint:
return
case <-tLimit:
fmt.Println("Time Limit Reached:", time.Since(start))
log.Println("Time Limit Reached:", time.Since(start))
return
default:
// Read new sample block.
Expand Down

0 comments on commit 5910c8f

Please sign in to comment.