diff --git a/action/action.go b/action/action.go index 20b6f8c..fdde0b9 100644 --- a/action/action.go +++ b/action/action.go @@ -3,7 +3,6 @@ package action import ( "encoding/json" "fmt" - "log" "strconv" "sync" "time" @@ -82,7 +81,6 @@ func (am *actionManager) SendForward(reply *model.Reply) error { } sendPkg := model.GenSendPkg(userID, groupID, reply.ReplyMsg, false, true) sendPkgJson, err := json.Marshal(sendPkg) - log.Println(string(sendPkgJson)) if err != nil { return err } diff --git a/handler/help/help.go b/handler/help/help.go index 6a3fc1f..b32c69f 100644 --- a/handler/help/help.go +++ b/handler/help/help.go @@ -32,7 +32,6 @@ func help(msg model.Message) *model.Reply { textMsg := message.NewTextMessage() textMsg.Data.Text = helpInfo nodeMsg := message.NewNodeMessage() - nodeMsg.Data.ID = "10086" nodeMsg.Data.UserID = "123456789" nodeMsg.Data.Nickname = "test" nodeMsg.Data.Content = []any{&textMsg}