diff --git a/action/action.go b/action/action.go index b3dbd2d..fdde0b9 100644 --- a/action/action.go +++ b/action/action.go @@ -3,7 +3,6 @@ package action import ( "encoding/json" "fmt" - "log" "strconv" "sync" "time" @@ -70,7 +69,6 @@ func (am *actionManager) SendMsg(reply *model.Reply) error { } func (am *actionManager) SendForward(reply *model.Reply) error { - log.Println(reply) am.sendMtx.Lock() defer am.sendMtx.Unlock() userID := strconv.FormatInt(reply.FromMsg.UserId, 10) diff --git a/handler/help/help.go b/handler/help/help.go index 00ffe9e..b32c69f 100644 --- a/handler/help/help.go +++ b/handler/help/help.go @@ -1,8 +1,6 @@ package help import ( - "log" - "git.lxtend.com/qqbot/action" "git.lxtend.com/qqbot/constants" "git.lxtend.com/qqbot/handler" @@ -16,7 +14,6 @@ func init() { } func help(msg model.Message) *model.Reply { - log.Println(msg) var helpInfo string if len(util.SplitN(msg.RawMsg, 2)) == 1 { helpInfo = `请输入!help [分类] 查看下面的分类功能`