[sinttest] Log testPackages to ISE's message

This means we the reason for the LOGGER.info() call is now gone.
This commit is contained in:
Florian Schmaus 2021-04-03 14:46:32 +02:00
parent aefbb28875
commit 138725a22f
1 changed files with 1 additions and 2 deletions

View File

@ -193,7 +193,6 @@ public class SmackIntegrationTestFramework {
testPackages = new String[] { "org.jivesoftware.smackx", "org.jivesoftware.smack" };
}
else {
LOGGER.info("Using sinttest java packages provided by configuration: " + config.testPackages);
testPackages = config.testPackages.toArray(new String[config.testPackages.size()]);
}
Reflections reflections = new Reflections(testPackages, new SubTypesScanner(),
@ -219,7 +218,7 @@ public class SmackIntegrationTestFramework {
}
if (classes.isEmpty()) {
throw new IllegalStateException("No test classes found");
throw new IllegalStateException("No test classes in " + Arrays.toString(testPackages) + " found");
}
LOGGER.info("SmackIntegrationTestFramework [" + testRunResult.testRunId