bootstrap err: info
Juan Batiz-Benet committed
Jan 5, 2015 at 09:00 UTC
6eb32aef35c4aefba5d17a03851b48e315c96ff7
1 file changed
+3
-1
core/bootstrap.go
+3
-1
@@ -97,7 +97,9 @@ func bootstrap(ctx context.Context,
97
98
// we can try running dht bootstrap even if we're connected to all bootstrap peers.
99
if err := r.Bootstrap(ctx, numDHTBootstrapQueries); err != nil {
100
- return err
100
+ // log this as Info. later on, discern better between errors.
101
+ log.Infof("dht bootstrap err: %s", err)
102
+ return nil
103
}
104
return nil
105
}