works on linux?

This commit is contained in:
Zack Scholl 2018-09-24 07:51:56 -07:00
parent 02f4b08929
commit 5397634217
1 changed files with 1 additions and 2 deletions

View File

@ -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
}