From 53976342172d1a750c1651e53e553048a34c18ad Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Mon, 24 Sep 2018 07:51:56 -0700 Subject: [PATCH] works on linux? --- src/comm/comm.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/comm/comm.go b/src/comm/comm.go index 3ff1640..7b3554d 100644 --- a/src/comm/comm.go +++ b/src/comm/comm.go @@ -3,7 +3,6 @@ package comm import ( "bytes" "fmt" - "log" "net" "strconv" "strings" @@ -95,7 +94,7 @@ func (c Comm) Read() (buf []byte, numBytes int, bs []byte, err error) { break } } - log.Printf("wanted %d and got %d", numBytes, len(buf)) + // log.Printf("wanted %d and got %d", numBytes, len(buf)) return }