2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-08 12:00:49 +00:00

migrate: Be a bit more verbose

This commit is contained in:
Alexander Neumann 2017-06-08 19:19:45 +02:00
parent 04ded881f6
commit ff3d2e42f4

View File

@ -39,7 +39,7 @@ func checkMigrations(opts MigrateOptions, gopts GlobalOptions, repo restic.Repos
} }
if ok { if ok {
Printf(" %v\n", m.Name()) Printf(" %v: %v\n", m.Name(), m.Desc())
} }
} }
@ -59,10 +59,11 @@ func applyMigrations(opts MigrateOptions, gopts GlobalOptions, repo restic.Repos
} }
if !ok { if !ok {
Warnf("migration %v cannot be applied: check failed\n") Warnf("migration %v cannot be applied: check failed\n", m.Name())
continue continue
} }
Printf("applying migration %v...\n", m.Name())
if err = m.Apply(ctx, repo); err != nil { if err = m.Apply(ctx, repo); err != nil {
Warnf("migration %v failed: %v\n", m.Name(), err) Warnf("migration %v failed: %v\n", m.Name(), err)
if firsterr == nil { if firsterr == nil {