forked from TrueCloudLab/restic
check: only show additional files if verbose output is enabled
Additional files are nearly always caused by interrupted backup runs. This is unproblematic, thus don't pollute the check output with it.
This commit is contained in:
parent
6d9dfff1cb
commit
879ba07a87
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ func runCheck(ctx context.Context, opts CheckOptions, gopts GlobalOptions, args
|
|||
if errors.As(err, &packErr) {
|
||||
if packErr.Orphaned {
|
||||
orphanedPacks++
|
||||
printer.P("%v\n", err)
|
||||
printer.V("%v\n", err)
|
||||
} else {
|
||||
if packErr.Truncated {
|
||||
salvagePacks.Insert(packErr.ID)
|
||||
|
|
Loading…
Reference in a new issue