From 6eb32aef35c4aefba5d17a03851b48e315c96ff7 Mon Sep 17 00:00:00 2001 From: Juan Batiz-Benet Date: Mon, 5 Jan 2015 09:00:58 -0800 Subject: [PATCH] bootstrap err: info --- core/bootstrap.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/bootstrap.go b/core/bootstrap.go index 3065ad001..2da57fb39 100644 --- a/core/bootstrap.go +++ b/core/bootstrap.go @@ -97,7 +97,9 @@ func bootstrap(ctx context.Context, // we can try running dht bootstrap even if we're connected to all bootstrap peers. if err := r.Bootstrap(ctx, numDHTBootstrapQueries); err != nil { - return err + // log this as Info. later on, discern better between errors. + log.Infof("dht bootstrap err: %s", err) + return nil } return nil }