1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Show actual number of elements restored

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2015-06-10 15:18:51 -07:00
parent 9da65ed84f
commit 141cd2a1f2

View file

@ -70,7 +70,7 @@ func (graph *Graph) restore() error {
} }
} }
graph.idIndex = truncindex.NewTruncIndex(ids) graph.idIndex = truncindex.NewTruncIndex(ids)
logrus.Debugf("Restored %d elements", len(dir)) logrus.Debugf("Restored %d elements", len(ids))
return nil return nil
} }