diff --git a/src/restic/repository/master_index.go b/src/restic/repository/master_index.go index 8019d8781..ebd2cbef2 100644 --- a/src/restic/repository/master_index.go +++ b/src/restic/repository/master_index.go @@ -30,8 +30,7 @@ func (mi *MasterIndex) Lookup(id restic.ID, tpe restic.BlobType) (blobs []restic for _, idx := range mi.idx { blobs, err = idx.Lookup(id, tpe) if err == nil { - debug.Log("MasterIndex.Lookup", - "found id %v: %v", id.Str(), blobs) + debug.Log("found id %v: %v", id.Str(), blobs) return } }