Browse Source

Slight change to error message.

Bruce Marriner 8 năm trước cách đây
mục cha
commit
a258ec3011
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      wsapi.go

+ 2 - 1
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.")