cache: cleanup debug logs

This commit is contained in:
Michael Eischer 2024-05-09 21:21:08 +02:00
parent 5214af88e2
commit ac805d6838
1 changed files with 3 additions and 1 deletions

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
}