mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
swarm/network/stream: use Debug instead Error for log in runSyncTest
This commit is contained in:
parent
0d7bc1ce9c
commit
e38c5353b3
1 changed files with 2 additions and 2 deletions
|
|
@ -252,8 +252,8 @@ func runSyncTest(chunkCount int, nodeCount int, live bool, history bool) error {
|
||||||
//call Healthy RPC
|
//call Healthy RPC
|
||||||
h := r.delivery.overlay.Healthy(pp)
|
h := r.delivery.overlay.Healthy(pp)
|
||||||
//print info
|
//print info
|
||||||
log.Error(r.delivery.overlay.String())
|
log.Debug(r.delivery.overlay.String())
|
||||||
log.Error(fmt.Sprintf("IS HEALTHY: %t", h.GotNN && h.KnowNN && h.Full))
|
log.Debug(fmt.Sprintf("IS HEALTHY: %t", h.GotNN && h.KnowNN && h.Full))
|
||||||
if !h.GotNN || !h.Full {
|
if !h.GotNN || !h.Full {
|
||||||
healthy = false
|
healthy = false
|
||||||
break
|
break
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue