diff --git a/mq.go b/mq.go index 81b66ec..2278f95 100644 --- a/mq.go +++ b/mq.go @@ -28,8 +28,6 @@ func MQSendMsgWorker(id int, msgs <-chan ChatWarsMessage) { failOnError(err, "MQSendMsgWorker["+strconv.Itoa(id)+"] : Failed to declare a queue") for m := range msgs { - log.Printf("MQSendMsgWorker[" + strconv.Itoa(id) + "] : Sending a message.") - b, err := json.Marshal(m) if err != nil { logOnError(err, "MQSendMsgWorker["+strconv.Itoa(id)+"] : Marshaling message.")