Commit 8e9ecdbc authored by Steven Allen's avatar Steven Allen

fix(bootstrap): include the error in the bootstrap failure warning

parent b8eb083e
...@@ -118,7 +118,7 @@ func (dht *IpfsDHT) refreshBuckets(ctx context.Context) { ...@@ -118,7 +118,7 @@ func (dht *IpfsDHT) refreshBuckets(ctx context.Context) {
} }
if err := doQuery(bucketID, randPeerInBucket.String(), walkFnc); err != nil { if err := doQuery(bucketID, randPeerInBucket.String(), walkFnc); err != nil {
logger.Warningf("failed to do a random walk on bucket %d", bucketID) logger.Warningf("failed to do a random walk on bucket %d: %s", bucketID, err)
} }
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment