Fix call to debug.Log()

This commit is contained in:
Alexander Neumann 2017-01-13 12:22:42 +01:00
parent 0556687584
commit 8734c2466c
1 changed files with 1 additions and 2 deletions

View File

@ -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
}
}