#65 cli options for setting loglevel;

defining a default cli output
This commit is contained in:
Andreas Penski (init) 2020-08-13 15:11:46 +02:00
parent a41336e9cf
commit 46fff79fe2
9 changed files with 509 additions and 349 deletions

View file

@ -100,7 +100,6 @@ class InternalCheck extends DefaultCheck {
final long rejected = results.entrySet().stream().filter(e -> !e.getValue().isAcceptable()).count();
final long errors = results.entrySet().stream().filter(e -> !e.getValue().isProcessingSuccessful()).count();
final Line line = new Line();
line.add(String.format("Validation of %s objects finished. ", results.size()));
line.add("Acceptable: ").add(acceptable, Code.GREEN);
line.add(" Rejected: ").add(rejected, Code.RED);
if (errors > 0) {