diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/EntityListController.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/EntityListController.java index ae60f849a..3c0901b27 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/EntityListController.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/EntityListController.java @@ -196,6 +196,8 @@ public class EntityListController extends VitroHttpServlet { //get list of individuals for the search results int size = docs.totalHits; + log.debug("Number of search results: " + size); + // don't get all the results, only get results for the requestedSize List individuals = new ArrayList(INDIVIDUALS_PER_PAGE); int individualsAdded = 0;