repository: remove redundant debug log

This commit is contained in:
Michael Eischer 2024-05-08 22:43:58 +02:00
parent 021fb49559
commit 6563f1d2ca
1 changed files with 0 additions and 5 deletions

View File

@ -238,11 +238,6 @@ func (r *Repository) LoadBlob(ctx context.Context, t restic.BlobType, id restic.
var lastError error
for _, blob := range blobs {
debug.Log("blob %v/%v found: %v", t, id, blob)
if blob.Type != t {
debug.Log("blob %v has wrong block type, want %v", blob, t)
}
// load blob from pack
h := backend.Handle{Type: restic.PackFile, Name: blob.PackID.String(), IsMetadata: t.IsMetadata()}