diff --git a/cmd/restic/cmd_prune.go b/cmd/restic/cmd_prune.go index 777cf616b..19cd4c525 100644 --- a/cmd/restic/cmd_prune.go +++ b/cmd/restic/cmd_prune.go @@ -378,7 +378,10 @@ func prune(opts PruneOptions, gopts GlobalOptions, repo restic.Repository, usedB return errorPacksMissing } if len(ignorePacks) != 0 { - Verbosef("missing but unneded pack files are referenced in the index, will be repaired\n") + Warnf("Missing but unneeded pack files are referenced in the index, will be repaired\n") + for id := range ignorePacks { + Warnf("will forget missing pack file %v\n", id) + } } repackAllPacksWithDuplicates := true