mirror of
https://github.com/octoleo/restic.git
synced 2025-02-02 20:08:25 +00:00
Fix call to debug.Log()
This commit is contained in:
parent
0556687584
commit
8734c2466c
@ -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…
x
Reference in New Issue
Block a user