Removing logging that is no longer needed.

This commit is contained in:
alexjacks92 2014-03-04 17:01:17 -05:00
parent 384af09240
commit 4ff69ee8d4
2 changed files with 0 additions and 4 deletions

View File

@ -591,7 +591,6 @@ public class IngestManager {
public synchronized boolean areModulesRunning() { public synchronized boolean areModulesRunning() {
for (IngestModuleAbstract serv : abstractFileModules) { for (IngestModuleAbstract serv : abstractFileModules) {
if (serv.hasBackgroundJobsRunning()) { if (serv.hasBackgroundJobsRunning()) {
logger.info("Module " + serv.toString() + " is running");
return true; return true;
} }
} }

View File

@ -265,15 +265,12 @@ public class RegressionTest extends TestCase {
new Timeout("pausing", 5000).sleep(); // give it a second (or five) to process new Timeout("pausing", 5000).sleep(); // give it a second (or five) to process
} }
logger.info("Enqueue took " + (System.currentTimeMillis() - start) + "ms"); logger.info("Enqueue took " + (System.currentTimeMillis() - start) + "ms");
int count = 0;
while (man.isIngestRunning()) { while (man.isIngestRunning()) {
new Timeout("pausing", 1000).sleep(); // give it a second (or five) to process new Timeout("pausing", 1000).sleep(); // give it a second (or five) to process
} }
new Timeout("pausing", 15000).sleep(); // give it a second (or fifteen) to process new Timeout("pausing", 15000).sleep(); // give it a second (or fifteen) to process
//boolean sleep = true; //boolean sleep = true;
while (man.areModulesRunning()) { while (man.areModulesRunning()) {
count++;
logger.info("count is " + count);
new Timeout("pausing", 5000).sleep(); // give it a second (or five) to process new Timeout("pausing", 5000).sleep(); // give it a second (or five) to process
} }