From 5d7cb85b1ed41c571836967e2e2a51285c622148 Mon Sep 17 00:00:00 2001 From: Mrs4s Date: Mon, 13 Dec 2021 01:42:29 +0800 Subject: [PATCH] update: unknown group system msg log level updated Error -> Debug --- client/system_msg.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/system_msg.go b/client/system_msg.go index 948d8128..bfb35c87 100644 --- a/client/system_msg.go +++ b/client/system_msg.go @@ -255,12 +255,12 @@ func decodeSystemMsgGroupPacket(c *QQClient, _ *incomingPacketInfo, payload []by ActionUinNick: st.Msg.ActionUinQqNick, }) default: - c.Error("unknown group message type: %v", st.Msg.GroupMsgType) + c.Debug("unknown group system message type: %v", st.Msg.GroupMsgType) } case 3: // ? case 5: // 自身状态变更(管理员/加群退群) default: - c.Error("unknown group msg: %v", st.Msg.SubType) + c.Debug("unknown group system msg: %v", st.Msg.SubType) } } return ret, nil