From 49b21fb5776d4677a5c556f9f425a40f7766e546 Mon Sep 17 00:00:00 2001 From: wangchuxiao Date: Wed, 21 Dec 2022 17:39:48 +0800 Subject: [PATCH] push --- internal/push/getui/push.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/push/getui/push.go b/internal/push/getui/push.go index ef179231f..bf940c74b 100644 --- a/internal/push/getui/push.go +++ b/internal/push/getui/push.go @@ -130,7 +130,7 @@ func newGetuiClient() *Getui { func (g *Getui) Push(userIDList []string, title, detailContent, operationID string, opts push.PushOpts) (resp string, err error) { token, err := db.DB.GetGetuiToken() - log.NewDebug(operationID, utils.GetSelfFuncName(), "token:", token) + log.NewDebug(operationID, utils.GetSelfFuncName(), "token:", token, userIDList) if err != nil { log.NewError(operationID, utils.GetSelfFuncName(), "GetGetuiToken failed", err.Error()) } @@ -153,7 +153,7 @@ func (g *Getui) Push(userIDList []string, title, detailContent, operationID stri } if len(userIDList) > 1 { taskID, err := db.DB.GetGetuiTaskID() - log.NewDebug(operationID, utils.GetSelfFuncName(), "token:", token) + log.NewDebug(operationID, utils.GetSelfFuncName(), "taskID", taskID) if err != nil { log.NewError(operationID, utils.GetSelfFuncName(), "GetGetuiTaskID failed", err.Error()) }