Skip to content

Commit

Permalink
Add whitespace to logging message.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Dec 29, 2023
1 parent 1b43214 commit 81820ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public QualityGateResult evaluate(final ResultHandler resultHandler, final Filte
resultHandler.publishResult(result.getOverallStatus(), message);

Check warning on line 59 in src/main/java/io/jenkins/plugins/util/QualityGateEvaluator.java

View check run for this annotation

Codecov / codecov/patch

src/main/java/io/jenkins/plugins/util/QualityGateEvaluator.java#L56-L59

Added lines #L56 - L59 were not covered by tests
}
log.logInfo("-> Details for each quality gate:");
result.getMessages().forEach(message -> log.logInfo(" -" + message));
result.getMessages().forEach(message -> log.logInfo(" - " + message));

Check warning on line 62 in src/main/java/io/jenkins/plugins/util/QualityGateEvaluator.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered lines

Lines 43-62 are not covered by tests

Check warning on line 62 in src/main/java/io/jenkins/plugins/util/QualityGateEvaluator.java

View check run for this annotation

Codecov / codecov/patch

src/main/java/io/jenkins/plugins/util/QualityGateEvaluator.java#L61-L62

Added lines #L61 - L62 were not covered by tests
}

return result;
Expand Down

0 comments on commit 81820ec

Please sign in to comment.