@@ -143,7 +143,7 @@ protected void doCreateCache(HistoryCache cache, String sinceRevision, File dire
143
143
if (fileCollector != null ) {
144
144
visitors .add (fileCollector );
145
145
}
146
- try (Progress progress = new Progress (LOGGER , String .format ("history traversal of %s" , this ))) {
146
+ try (Progress progress = new Progress (LOGGER , String .format (" changesets traversed of %s" , this ))) {
147
147
ProgressVisitor progressVisitor = new ProgressVisitor (progress );
148
148
visitors .add (progressVisitor );
149
149
traverseHistory (directory , sinceRevision , null , null , visitors );
@@ -183,7 +183,8 @@ protected void doCreateCache(HistoryCache cache, String sinceRevision, File dire
183
183
visitors .add (fileCollector );
184
184
}
185
185
186
- try (Progress progress = new Progress (LOGGER , String .format ("history traversal of %s" , this ))) {
186
+ try (Progress progress = new Progress (LOGGER ,
187
+ String .format (" changesets traversed of %s (range %s %s)" , this , sinceRevision , tillRevision ))) {
187
188
ProgressVisitor progressVisitor = new ProgressVisitor (progress );
188
189
visitors .add (progressVisitor );
189
190
traverseHistory (directory , sinceRevision , tillRevision , null , visitors );
0 commit comments