...
 
Commits (1)
......@@ -5,6 +5,7 @@ import (
"encoding/json"
"fmt"
"github.com/go-redis/redis/v8"
"hilo-micCenter/common/config"
"hilo-micCenter/common/dingding"
"hilo-micCenter/common/mylogrus"
"hilo-micCenter/common/redisCli"
......@@ -132,7 +133,9 @@ func SendSignalMsg(groupId string, msg GroupSystemMsg) {
mylogrus.MyLog.Errorf("cron micChangeSys SendSignalMsg send dingding fail%s", err.Error())
}
} else {
//mylogrus.MyLog.Infof("cron micChangeSys SendSignalMsg sync success for %s, msgId = %d, content:%v", groupId, msg.MsgId, str)
if !config.AppIsRelease() {
mylogrus.MyLog.Infof("cron micChangeSys SendSignalMsg sync success for %s, msgId = %d, content:%v", groupId, msg.MsgId, str)
}
}
} else {
mylogrus.MyLog.Errorf("cron micChangeSys SendSignalMsg failure, msgId = %d : %s , msg:%+v", msg.MsgId, err.Error(), msg)
......