From 773ff6ca1646831d0b7ba5aebaa287cbca71aec5 Mon Sep 17 00:00:00 2001 From: lwch Date: Thu, 4 Nov 2021 11:56:30 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/server/handler/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/server/handler/handler.go b/code/server/handler/handler.go index fe4b672..577f65f 100644 --- a/code/server/handler/handler.go +++ b/code/server/handler/handler.go @@ -226,7 +226,7 @@ func (h *Handler) msgHook(msg *network.Msg, from, to *client, size uint16) { msg.FromIdx = from.idx msg.To = to.parent.id msg.ToIdx = to.idx - logging.Info("forward %d bytes on link %s from %s-%d to %s-%d", size, msg.GetLinkId(), + logging.Debug("forward %d bytes on link %s from %s-%d to %s-%d", size, msg.GetLinkId(), from.parent.id, from.idx, to.parent.id, to.idx) }