diff --git a/src/croc/croc.go b/src/croc/croc.go index ce6a3c0e..bb9c22d1 100644 --- a/src/croc/croc.go +++ b/src/croc/croc.go @@ -706,7 +706,9 @@ func (c *Client) updateState() (err error) { // setup the progressbar c.setBar() c.TotalSent = 0 + log.Debug("beginning sending comms") for i := 0; i < len(c.Options.RelayPorts); i++ { + log.Debugf("starting sending over comm %d",i) go c.sendData(i) } }