From f7421128a0074fe7577ada0614a2eb58afe3d082 Mon Sep 17 00:00:00 2001 From: Hoshina Date: Sat, 14 Feb 2026 17:46:47 +0800 Subject: [PATCH] style: remove unnecessary log messages in WebSocket listener --- pkg/channels/onebot.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/channels/onebot.go b/pkg/channels/onebot.go index 7f48ef6..ae563b8 100644 --- a/pkg/channels/onebot.go +++ b/pkg/channels/onebot.go @@ -280,11 +280,9 @@ func (c *OneBotChannel) buildSendRequest(msg bus.OutboundMessage) (string, inter } func (c *OneBotChannel) listen() { - logger.InfoC("onebot", "WebSocket listener started") for { select { case <-c.ctx.Done(): - logger.InfoC("onebot", "WebSocket listener stopping (context cancelled)") return default: c.mu.Lock()