From 8bda470afd9513ddd55d40017ee040aba3216dcc Mon Sep 17 00:00:00 2001 From: xvzc Date: Fri, 14 Jan 2022 17:39:14 +0900 Subject: [PATCH] delete unnecessary debug --- net/conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/conn.go b/net/conn.go index 2f80479..24e3fd9 100644 --- a/net/conn.go +++ b/net/conn.go @@ -158,7 +158,7 @@ func (from *Conn) Serve(to *Conn, proto string) { break } - log.Debug(proto, from.RemoteAddr(), " sent data: ", len(buf), "bytes\n\n", string(buf)) + log.Debug(proto, from.RemoteAddr(), " sent data: ", len(buf), "bytes") if _, err := to.Write(buf); err != nil { log.Debug(proto+"Error Writing to ", to.RemoteAddr())