1
0
mirror of https://github.com/restic/restic.git synced 2024-07-09 09:44:11 +02:00

cache: cleanup debug logs

This commit is contained in:
Michael Eischer 2024-05-09 21:21:08 +02:00
parent 5214af88e2
commit ac805d6838

View File

@ -181,7 +181,9 @@ func (b *Backend) Load(ctx context.Context, h backend.Handle, length int, offset
inCache, err = b.loadFromCache(h, length, offset, consumer)
if inCache {
debug.Log("error loading %v from cache: %v", h, err)
if err != nil {
debug.Log("error loading %v from cache: %v", h, err)
}
return err
}