From 45757b8b555bbf2e82ecad040f9d1bb98c45f8db Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 10 Mar 2014 13:22:08 -0700 Subject: [PATCH] minor output format change --- go/weed/benchmark.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/weed/benchmark.go b/go/weed/benchmark.go index 381860da3..2381bdecc 100644 --- a/go/weed/benchmark.go +++ b/go/weed/benchmark.go @@ -285,7 +285,7 @@ func (s *stats) checkProgress(testName string, finishChan chan bool) { func (s *stats) printStats() { timeTaken := float64(int64(s.end.Sub(s.start))) / 1000000000 - fmt.Printf("Concurrency Level: %d\n", *b.concurrency) + fmt.Printf("\nConcurrency Level: %d\n", *b.concurrency) fmt.Printf("Time taken for tests: %.3f seconds\n", timeTaken) fmt.Printf("Complete requests: %d\n", s.completed) fmt.Printf("Failed requests: %d\n", s.failed)