Slight change to error message.
This commit is contained in:
parent
e2e03c3078
commit
a258ec3011
1 changed files with 2 additions and 1 deletions
3
wsapi.go
3
wsapi.go
|
@ -288,11 +288,12 @@ func (s *Session) event(messageType int, message []byte) {
|
|||
// Attempt to unmarshal our event.
|
||||
// If there is an error we should handle the event itself.
|
||||
if err = json.Unmarshal(e.RawData, i); err != nil {
|
||||
log.Println(fmt.Sprintf("Unable to unmarshal event %s data: %s", e.Type, err))
|
||||
log.Printf("error unmarshalling %s event, %s\n", e.Type, err)
|
||||
// Ready events must fire, even if they are empty.
|
||||
if e.Type != "READY" {
|
||||
i = nil
|
||||
}
|
||||
|
||||
}
|
||||
} else {
|
||||
log.Println("Unknown event.")
|
||||
|
|
Loading…
Reference in a new issue