From f78a561eba400c1145aa50abc02be7f8f23be3a4 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Wed, 27 Mar 2019 13:38:31 +1100 Subject: [PATCH] Downgrade bootstrap node error It's very noisy in the test logs, and probably indicates user error (which may be a warning), rather than an actual, unexpected error. --- core/bootstrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bootstrap.go b/core/bootstrap.go index e11861ee3..5ff4f8e14 100644 --- a/core/bootstrap.go +++ b/core/bootstrap.go @@ -80,7 +80,7 @@ func Bootstrap(n *IpfsNode, cfg BootstrapConfig) (io.Closer, error) { if len(cfg.BootstrapPeers()) == 0 { // We *need* to bootstrap but we have no bootstrap peers // configured *at all*, inform the user. - log.Error("no bootstrap nodes configured: go-ipfs may have difficulty connecting to the network") + log.Warning("no bootstrap nodes configured: go-ipfs may have difficulty connecting to the network") } // the periodic bootstrap function -- the connection supervisor