update log

This commit is contained in:
shoopea 2020-06-27 18:05:12 +02:00
parent 64b0b7fe52
commit 6592c669d6
1 changed files with 1 additions and 1 deletions

2
mq.go
View File

@ -82,7 +82,7 @@ func MQReceiveMsgWorker(id int, cmd chan<- TGCommand) {
failOnError(err, "MQReceiveMsgWorker["+strconv.Itoa(id)+"] : Failed to declare a consumer")
for d := range m {
log.Printf("MQReceiveMsgWorker["+strconv.Itoa(id)+"] : Received a message:\n %s", string(d.Body))
//log.Printf("MQReceiveMsgWorker["+strconv.Itoa(id)+"] : Received a message:\n %s", string(d.Body))
err = json.Unmarshal(d.Body, &c)
logOnError(err, "MQReceiveMsgWorker["+strconv.Itoa(id)+"] : Can't unmarshal.\n"+string(d.Body))
if err == nil {