SOLR-6286: Add logging on how long we slept and how many docs were found

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1613838 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2014-07-27 20:27:35 +00:00
parent 0373996d3a
commit 63b9f12570
1 changed files with 1 additions and 0 deletions

View File

@ -194,6 +194,7 @@ public class TestReplicationHandler extends SolrTestCaseJ4 {
Thread.sleep(100);
res = query(query, server);
}
log.info("Waited for {}ms and found {} docs", timeSlept, numFound(res));
return res;
}