forked from TrueCloudLab/restic
Fix call to debug.Log()
This commit is contained in:
parent
0556687584
commit
8734c2466c
1 changed files with 1 additions and 2 deletions
|
@ -30,8 +30,7 @@ func (mi *MasterIndex) Lookup(id restic.ID, tpe restic.BlobType) (blobs []restic
|
||||||
for _, idx := range mi.idx {
|
for _, idx := range mi.idx {
|
||||||
blobs, err = idx.Lookup(id, tpe)
|
blobs, err = idx.Lookup(id, tpe)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
debug.Log("MasterIndex.Lookup",
|
debug.Log("found id %v: %v", id.Str(), blobs)
|
||||||
"found id %v: %v", id.Str(), blobs)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue