Ruby bundler: Better message and logging when bundle-audit not found.

This commit is contained in:
Dale Visser
2015-08-30 14:31:58 -04:00
parent 80c4666198
commit c393e74160

View File

@@ -124,7 +124,9 @@ public class RubyBundleAuditAnalyzer extends AbstractFileTypeAnalyzer {
}
}
} catch (AnalysisException ae) {
LOGGER.warn("Exception while trying to launch bundle-audit. Disabling " + ANALYZER_NAME, ae.getCause());
LOGGER.warn("Exception while trying to launch bundle-audit. Disabling " +
ANALYZER_NAME + ". See log file for more details.");
LOGGER.debug("Exception while trying to launch bundle-audit.", ae);
setEnabled(false);
}
}