Fix debug log message

This commit is contained in:
Alexander Neumann 2015-11-13 23:47:53 +01:00
parent acba82c8f7
commit 96061d2a2f
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ func (mi *MasterIndex) Lookup(id backend.ID) (blob PackedBlob, err error) {
blob, err = idx.Lookup(id)
if err == nil {
debug.Log("MasterIndex.Lookup",
"found id %v: %v", blob)
"found id %v: %v", id.Str(), blob)
return
}
}