From de846bb25810b185f2ef6cc983775503e06454ce Mon Sep 17 00:00:00 2001 From: cuteLittleDevil <792192820@qq.com> Date: Sun, 27 Oct 2024 23:26:28 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=8E=BB=E6=8E=89=E8=B0=83?= =?UTF-8?q?=E8=AF=95=E7=9A=84=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/connection.go | 1 - 1 file changed, 1 deletion(-) diff --git a/service/connection.go b/service/connection.go index b2d4bec..23f4647 100644 --- a/service/connection.go +++ b/service/connection.go @@ -86,7 +86,6 @@ func (c *connection) reader() { } for _, msg := range msgs { command := consts.JT808CommandType(msg.JTMessage.Header.ID) - fmt.Println(uint16(command), command.String()) if handler, ok := c.handles[command]; ok { msg.Handler = handler msg.OnReadExecutionEvent(msg)