Преглед изворни кода

Merge pull request #13862 from Microsoft/10662-fixelementsrestored

Show actual number of elements restored
Antonio Murdaca пре 10 година
родитељ
комит
2b27fe17a1
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      graph/graph.go

+ 1 - 1
graph/graph.go

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