From 8efd01f881ac7d132022d29450a4fcfeecc39a2b Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Thu, 4 Apr 2019 16:57:41 -0700 Subject: [PATCH] increase buffer --- src/croc/croc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/croc/croc.go b/src/croc/croc.go index f1463f76..02c242ae 100644 --- a/src/croc/croc.go +++ b/src/croc/croc.go @@ -620,7 +620,7 @@ func (c *Client) dataChannelReceive(num int) (err error) { var n int c.mutex.Lock() n, err = c.CurrentFile.WriteAt(chunk.Bytes, chunk.Location) - c.log.Debugf("wrote %d bytes to %d (%d)", n, chunk.Location,num) + // c.log.Debugf("wrote %d bytes to %d (%d)", n, chunk.Location,num) c.mutex.Unlock() if err != nil { panic(err)