diff --git a/cmd/swarm/db.go b/cmd/swarm/db.go index 9ab5ba15e2..856d3e1d8a 100644 --- a/cmd/swarm/db.go +++ b/cmd/swarm/db.go @@ -217,7 +217,7 @@ func exportLegacy(path string, basekey []byte, out io.Writer) (int64, error) { datakey := getDataKey(index.Idx, po) data, err := db.Get(datakey, nil) if err != nil { - log.Crit(fmt.Sprintf("Chunk %x found but could not be accessed: %v, %x", key, err, datakey)) + log.Warn(fmt.Sprintf("Chunk %x found but could not be accessed: %v, %x", key, err, datakey)) continue } diff --git a/swarm.go b/swarm.go index ee85a216ed..1bdaa63bfe 100644 --- a/swarm.go +++ b/swarm.go @@ -153,7 +153,7 @@ func NewSwarm(config *api.Config, mockStore *mock.NodeStore) (self *Swarm, err e isLegacy := localstore.IsLegacyDatabase(config.ChunkDbPath) if isLegacy { - return nil, errors.New("Legacy database format detected! Please read the migration announcement at: https://github.com/ethersphere/go-ethereum/wiki/Swarm-v0.4-local-store-migration") + return nil, errors.New("Legacy database format detected! Please read the migration announcement at: https://github.com/ethersphere/swarm/blob/master/docs/Migration-v0.3-to-v0.4.md") } var feedsHandler *feed.Handler