r 8364 added a statement to get count of uris that are being indexed.

This commit is contained in:
anupsawant 2011-06-30 11:29:33 +00:00
parent c11117396d
commit 14bba181c2

View file

@ -349,6 +349,7 @@ public class IndexBuilder extends Thread {
work.get( counter % workers ).add( uris.next() ); work.get( counter % workers ).add( uris.next() );
counter ++; counter ++;
} }
log.info("Number of individuals to be indexed : " + counter);
return work; return work;
} }