remove extra log statement

This commit is contained in:
Alex Grintsvayg 2019-02-08 20:19:58 -05:00
parent 41b513439f
commit 2744080c6b
No known key found for this signature in database
GPG key ID: AEB3F089F86A22B5

View file

@ -329,7 +329,7 @@ func readNextRequest(conn net.Conn) ([]byte, error) {
chunk, err := buf.ReadBytes('}')
if err != nil {
if err != io.EOF {
log.Errorln("readBytes error:", err)
//log.Errorln("readBytes error:", err) // logged by caller
return request, err
}
eof = true