Merge pull request #3496 from juergenhoetzel/imporove-snapshot-filter-warning-message

Improve snapshot filter warning message
This commit is contained in:
MichaelEischer 2021-09-03 23:42:27 +02:00 committed by GitHub
commit b45d88e124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ func FindFilteredSnapshots(ctx context.Context, repo *repository.Repository, hos
} else { } else {
id, err = restic.FindSnapshot(ctx, repo, s) id, err = restic.FindSnapshot(ctx, repo, s)
if err != nil { if err != nil {
Warnf("Ignoring %q, it is not a snapshot id\n", s) Warnf("Ignoring %q: %v\n", s, err)
continue continue
} }
} }

View File

@ -10,7 +10,7 @@ import (
type MultipleIDMatchesError struct{ prefix string } type MultipleIDMatchesError struct{ prefix string }
func (e *MultipleIDMatchesError) Error() string { func (e *MultipleIDMatchesError) Error() string {
return fmt.Sprintf("multiple IDs with prefix %s found", e.prefix) return fmt.Sprintf("multiple IDs with prefix %q found", e.prefix)
} }
// A NoIDByPrefixError is returned by Find() when no ID for a given prefix // A NoIDByPrefixError is returned by Find() when no ID for a given prefix