From 141cd2a1f26f3455a1daf20420ca1efb5a9e1a16 Mon Sep 17 00:00:00 2001 From: John Howard Date: Wed, 10 Jun 2015 15:18:51 -0700 Subject: [PATCH] Show actual number of elements restored Signed-off-by: John Howard --- graph/graph.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/graph.go b/graph/graph.go index e95887fab8..7dd23085f1 100644 --- a/graph/graph.go +++ b/graph/graph.go @@ -70,7 +70,7 @@ func (graph *Graph) restore() error { } } graph.idIndex = truncindex.NewTruncIndex(ids) - logrus.Debugf("Restored %d elements", len(dir)) + logrus.Debugf("Restored %d elements", len(ids)) return nil }