From 14e86aee931e98aa479866434cb659a8efc25e7a Mon Sep 17 00:00:00 2001 From: nkryuchkov Date: Tue, 27 Aug 2019 22:30:59 +0300 Subject: [PATCH] Remove print that causes errors --- pkg/app/app.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/app/app.go b/pkg/app/app.go index 3393d2ca51..ac67f1030f 100644 --- a/pkg/app/app.go +++ b/pkg/app/app.go @@ -219,7 +219,6 @@ func (app *App) serveConn(loop routing.Loop, conn io.ReadWriteCloser) { if err != nil { break } - fmt.Println("READ:", buf) packet := &Packet{Loop: loop, Payload: buf[:n]} if err := app.proto.Send(FrameSend, packet, nil); err != nil {