fix: 修改 help 函数中的日志记录,直接输出消息对象以增强可读性

This commit is contained in:
lixiangwuxian 2025-04-10 00:48:28 +08:00
parent bb49892aa4
commit 04b0b5d754

View File

@ -16,7 +16,7 @@ func init() {
}
func help(msg model.Message) *model.Reply {
log.Println(msg.RawMsg)
log.Println(msg)
var helpInfo string
if len(util.SplitN(msg.RawMsg, 2)) == 1 {
helpInfo = `请输入!help [分类] 查看下面的分类功能`