diff --git a/src/comm/comm.go b/src/comm/comm.go index 3ff16401..7b3554d8 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 }