mirror of https://github.com/restic/restic.git
cache: Add file name to error message
This commit is contained in:
parent
1dcfd64028
commit
d81adcfaa5
|
@ -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 New Issue