This commit is contained in:
shoopea 2019-06-11 10:48:03 +08:00
parent cd20362dda
commit 9591c7565d

View File

@ -1,6 +1,8 @@
package main
import (
"encoding/json"
"log"
"strings"
)
@ -21,6 +23,9 @@ func clientRefreshCWMsg(chatID64 int64, msgID64 int64) {
FromMsgID64: msgID64,
}
b, _ := json.Marshal(c)
log.Printf("clientRefreshCWMsg:\n%s\n", string(b))
MQTGCmdQueue <- c
}