diff options
author | zelig <viktor.tron@gmail.com> | 2015-03-20 07:03:50 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-03-20 18:41:41 +0800 |
commit | 8767179d7439d8a28086ae6162e2234ed9e16d64 (patch) | |
tree | 613a429f91e111feb216feefdac807fdce19b9d8 /blockpool/status_test.go | |
parent | 63cae9b9ac0e9e7fbdaf3ab44345c298f6d969c6 (diff) | |
download | go-tangerine-8767179d7439d8a28086ae6162e2234ed9e16d64.tar go-tangerine-8767179d7439d8a28086ae6162e2234ed9e16d64.tar.gz go-tangerine-8767179d7439d8a28086ae6162e2234ed9e16d64.tar.bz2 go-tangerine-8767179d7439d8a28086ae6162e2234ed9e16d64.tar.lz go-tangerine-8767179d7439d8a28086ae6162e2234ed9e16d64.tar.xz go-tangerine-8767179d7439d8a28086ae6162e2234ed9e16d64.tar.zst go-tangerine-8767179d7439d8a28086ae6162e2234ed9e16d64.zip |
reduce logging output
Diffstat (limited to 'blockpool/status_test.go')
-rw-r--r-- | blockpool/status_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/blockpool/status_test.go b/blockpool/status_test.go index 434acd092..cbaa8bb55 100644 --- a/blockpool/status_test.go +++ b/blockpool/status_test.go @@ -1,7 +1,7 @@ package blockpool import ( - "fmt" + // "fmt" "testing" "time" @@ -53,7 +53,7 @@ func checkStatus(t *testing.T, bp *BlockPool, syncing bool, expected []int) (err continue //hack } err = test.CheckInt(statusFields[i], got[i], v, t) - fmt.Printf("%v: %v (%v)\n", statusFields[i], got[i], v) + // fmt.Printf("%v: %v (%v)\n", statusFields[i], got[i], v) if err != nil { return err } |