Degrade warning to fine

This commit is contained in:
Fabian Becker 2015-12-20 14:49:27 +01:00
parent 510fe35c34
commit 4c03cecb16

View File

@ -231,7 +231,7 @@ public class ReflectPackage {
// This improves performance a lot when having a lot of JARs on the classpath
int index = aDynCP.lastIndexOf(System.getProperty("file.separator"));
if (index != -1 && !aDynCP.substring(index).toLowerCase().contains("eva")) {
LOGGER.warning("Skipping Jar (does not start with \"eva\": " + aDynCP);
LOGGER.fine("Skipping Jar (does not start with \"eva\": " + aDynCP);
continue;
}
getClassesFromJarFltr(set, aDynCP, pkg, includeSubs, reqSuperCls);