pmd correction to logger

Former-commit-id: 500aa687bfa3dd9c126898e79121425e5e7e2e9d
This commit is contained in:
Jeremy Long
2014-05-10 07:16:50 -04:00
parent 99ad6634c4
commit abdfa3ccf6

View File

@@ -480,7 +480,7 @@ public class ArchiveAnalyzer extends AbstractFileTypeAnalyzer {
}
}
} catch (IOException ex) {
Logger.getLogger(ArchiveAnalyzer.class.getName()).log(Level.SEVERE, null, ex);
LOGGER.log(Level.FINE, String.format("Unable to unzip zip file '%s'", dependency.getFilePath()), ex);
} finally {
ZipFile.closeQuietly(zip);
}