Skip to content

Commit

Permalink
Set message stating how many workers have already connected
Browse files Browse the repository at this point in the history
Promoted log message to Info and added total worker count expected
Resolves #6
  • Loading branch information
mulbc committed Nov 8, 2019
1 parent b517b40 commit dd89951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func scheduleTests(config common.Testconf) {
WorkerID: fmt.Sprintf("w%d", worker),
}
workerConnection := <-readyWorkers
log.WithField("Worker", (*workerConnection).RemoteAddr()).Debugf("We found worker %d for test %d", worker, testNumber)
log.WithField("Worker", (*workerConnection).RemoteAddr()).Infof("We found worker %d / %d for test %d", worker, test.Workers, testNumber)
go executeTestOnWorker(workerConnection, workerConfig, doneChannel, continueWorkers)
}
for worker := 0; worker < test.Workers; worker++ {
Expand Down

0 comments on commit dd89951

Please sign in to comment.