Skip to content
This repository has been archived by the owner on Aug 29, 2019. It is now read-only.

Commit

Permalink
- Remove log on unknown event
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Kiryukhin committed Dec 22, 2018
1 parent 3e887a7 commit f9744b8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fetchEvents.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"encoding/json"
"io/ioutil"
"log"
"net/http"
"net/url"
"time"
Expand Down Expand Up @@ -76,7 +75,7 @@ func (a *API) FetchEvents(ctx context.Context, ch chan interface{}) error {
}
ch <- ev
default:
log.Printf("Unknown event %s: %#v", ce.Type, e)
ch <- ce
}
}
select {
Expand Down

0 comments on commit f9744b8

Please sign in to comment.