network/simulations: remove log from test printing all hashes

The removed `log.Info()` call produced roughly 1.5k lines per CI run.
To put that into perspective a usual CI run has roughly 10k lines.

Also, I didn't find logging hashes without context very useful. So
I just removed the line. So we have a smaller chance to exceed
Travis' log line limits.

fixes ethersphere/go-ethereum#1189
This commit is contained in:
Ferenc Szabo 2019-02-05 13:46:05 +01:00
parent 7927fef9a8
commit 63647f30fa

View file

@ -362,9 +362,6 @@ func discoveryPersistenceSimulation(nodes, conns int, adapter adapters.NodeAdapt
return fmt.Errorf("error getting node string %s", err)
}
log.Info(nodeStr)
for _, a := range addrs {
log.Info(common.Bytes2Hex(a))
}
if !healthy.ConnectNN || healthy.CountKnowNN == 0 {
isHealthy = false
break