Index: hbase-common/src/test/java/org/apache/hadoop/hbase/ClassFinder.java =================================================================== --- hbase-common/src/test/java/org/apache/hadoop/hbase/ClassFinder.java (revision 1510065) +++ hbase-common/src/test/java/org/apache/hadoop/hbase/ClassFinder.java (working copy) @@ -136,7 +136,7 @@ if (!proceedOnExceptions) { throw ioEx; } - LOG.error("Failed to look for classes in " + jarFileName + ": " + ioEx); + LOG.warn("Failed to look for classes in " + jarFileName + ": " + ioEx); } Set> classes = new HashSet>(); @@ -148,7 +148,7 @@ if (!proceedOnExceptions) { throw ioEx; } - LOG.error("Failed to get next entry from " + jarFileName + ": " + ioEx); + LOG.warn("Failed to get next entry from " + jarFileName + ": " + ioEx); break; } if (entry == null) { @@ -173,7 +173,7 @@ Class c = makeClass(className, proceedOnExceptions); if (c != null) { if (!classes.add(c)) { - LOG.error("Ignoring duplicate class " + className); + LOG.warn("Ignoring duplicate class " + className); } } } @@ -184,13 +184,13 @@ boolean proceedOnExceptions) throws ClassNotFoundException, LinkageError { Set> classes = new HashSet>(); if (!baseDirectory.exists()) { - LOG.error("Failed to find " + baseDirectory.getAbsolutePath()); + LOG.warn("Failed to find " + baseDirectory.getAbsolutePath()); return classes; } File[] files = baseDirectory.listFiles(this.fileFilter); if (files == null) { - LOG.error("Failed to get files from " + baseDirectory.getAbsolutePath()); + LOG.warn("Failed to get files from " + baseDirectory.getAbsolutePath()); return classes; } @@ -205,7 +205,7 @@ Class c = makeClass(className, proceedOnExceptions); if (c != null) { if (!classes.add(c)) { - LOG.error("Ignoring duplicate class " + className); + LOG.warn("Ignoring duplicate class " + className); } } }