更改public private关键字为group friend

This commit is contained in:
2025-02-05 01:50:24 +08:00
parent d149a2ea0f
commit bdc3bc44e8
8 changed files with 10 additions and 10 deletions

View File

@@ -14,7 +14,7 @@ public class DebugLogger : AbstractLogger
protected override void Log(string data, string eventName, MsgType msgType, uint uin, string message)
{
if (msgType == MsgType.Public)
if (msgType == MsgType.Group)
{
var chain = MessageBuilder.Group(uin).Text($"[{data}] [{eventName}] [Debug] {message}");
BotService.Instance.Client!.SendMessage(chain.Build());