diff --git a/action/action.go b/action/action.go index 58fca9e..954ce8b 100644 --- a/action/action.go +++ b/action/action.go @@ -3,6 +3,7 @@ package action import ( "encoding/json" "fmt" + "log" "sync" "time" @@ -64,6 +65,7 @@ func (am *actionManager) SendForward(reply *model.Reply) error { defer am.sendMtx.Unlock() sendPkg := model.GenSendPkg(reply.FromMsg.UserId, reply.FromMsg.GroupInfo.GroupId, reply.ReplyMsg, false, true) sendPkgJson, err := json.Marshal(sendPkg) + log.Println(string(sendPkgJson)) if err != nil { return err }