Skip to content

Commit

Permalink
better log -rf :eo-maven-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 25, 2023
1 parent ceb28ef commit 248b57b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ void exec() throws IOException {
"Printed: %s => %s", source, this.printOutputDir.toPath().resolve(relative)
);
}
Logger.info(this, "Printed %d sources", sources.size());
if (sources.isEmpty()) {
Logger.info(this, "No XMIR sources found");
} else {
Logger.info(this, "Printed %d XMIR sources into EO", sources.size());
}
}
}

0 comments on commit 248b57b

Please sign in to comment.