aboutsummaryrefslogtreecommitdiff
path: root/go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2014-03-10 13:22:08 -0700
committerChris Lu <chris.lu@gmail.com>2014-03-10 13:22:08 -0700
commit45757b8b555bbf2e82ecad040f9d1bb98c45f8db (patch)
tree3ee7d5e477ff2bbe909730da32bc8880cb4e1d54 /go
parent1f0a564e433024294b35664877017958c0fb7c50 (diff)
downloadseaweedfs-45757b8b555bbf2e82ecad040f9d1bb98c45f8db.tar.xz
seaweedfs-45757b8b555bbf2e82ecad040f9d1bb98c45f8db.zip
minor output format change
Diffstat (limited to 'go')
-rw-r--r--go/weed/benchmark.go2
1 files changed, 1 insertions, 1 deletions
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)