fixed bug that caused ODC to fail if an invalid assembly was scanned

This commit is contained in:
Jeremy Long
2017-01-28 08:13:27 -05:00
parent b8c6c86330
commit 5333083a78

View File

@@ -144,7 +144,8 @@ public class AssemblyAnalyzer extends AbstractFileTypeAnalyzer {
dependency.getActualFilePath());
return;
} else if (rc != 0) {
LOGGER.warn("Return code {} from GrokAssembly", rc);
LOGGER.debug("Return code {} from GrokAssembly; dependency-check is unable to analyze the library: {}", rc, dependency.getActualFilePath());
return;
}
final XPath xpath = XPathFactory.newInstance().newXPath();