forked from TrueCloudLab/restic
cache: Add file name to error message
This commit is contained in:
parent
1dcfd64028
commit
d81adcfaa5
1 changed files with 1 additions and 1 deletions
2
internal/cache/file.go
vendored
2
internal/cache/file.go
vendored
|
@ -60,7 +60,7 @@ func (c *Cache) Load(h restic.Handle, length int, offset int64) (io.ReadCloser,
|
|||
if fi.Size() <= crypto.Extension {
|
||||
_ = f.Close()
|
||||
_ = c.Remove(h)
|
||||
return nil, errors.New("cached file is truncated, removing")
|
||||
return nil, errors.Errorf("cached file %v is truncated, removing", h)
|
||||
}
|
||||
|
||||
if offset > 0 {
|
||||
|
|
Loading…
Reference in a new issue