This commit is contained in:
richboo111
2023-07-12 17:44:14 +08:00
parent f9ef8b3afb
commit c2be67e175

View File

@@ -4,6 +4,7 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"log"
"time" "time"
"git.rosy.net.cn/jx-callback/business/authz/autils" "git.rosy.net.cn/jx-callback/business/authz/autils"
@@ -260,6 +261,6 @@ func pushMsgByUniApp(storeId int, storeName string, cID []string, msg string, bo
} }
} }
if len(errs) != 0 { if len(errs) != 0 {
globals.SugarLogger.Errorf("uinapp 消息推送错误:%s", utils.Format4Output(errs, false)) log.Printf("uinapp 消息推送错误:%s", utils.Format4Output(errs, false))
} }
} }