From 8734c2466ced4c72c83f36e253c797ed3670ed61 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Fri, 13 Jan 2017 12:22:42 +0100 Subject: [PATCH] Fix call to debug.Log() --- src/restic/repository/master_index.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 } }