File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
maven/src/main/java/org/owasp/dependencycheck/maven Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -2703,7 +2703,7 @@ private String[] determineSuppressions() {
27032703 /**
27042704 * Hacky method of muting the noisy logging from JCS
27052705 */
2706- private void muteNoisyLoggers () {
2706+ protected void muteNoisyLoggers () {
27072707 System .setProperty ("jcs.logSystem" , "slf4j" );
27082708 if (!getLog ().isDebugEnabled ()) {
27092709 Slf4jAdapter .muteLogging (true );
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ public boolean canGenerateReport() {
6767 */
6868 @ Override
6969 protected void runCheck () throws MojoExecutionException , MojoFailureException {
70+ muteNoisyLoggers ();
7071 try (Engine engine = initializeEngine ()) {
7172 try {
7273 if (!engine .getSettings ().getBoolean (Settings .KEYS .AUTO_UPDATE )) {
You can’t perform that action at this time.
0 commit comments