Skip to content

Commit

Permalink
code review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
n0tl3ss committed Apr 2, 2024
1 parent ca35e20 commit ca05132
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class WriteArgsFileMojo extends NativeCompileNoForkMojo {
public void execute() throws MojoExecutionException {
List<String> args = getBuildArgs();

getLog().info("Cleaning old native image build args");
getLog().debug("Cleaning old native image build args");

try (Stream<Path> listStream = Files.list(outputDirectory.toPath())) {
listStream.map(path -> path.getFileName().toString())
Expand All @@ -86,7 +86,7 @@ public void execute() throws MojoExecutionException {
}
});
} catch (IOException e) {
throw new RuntimeException(e);
throw new MojoExecutionException(e);
}

List<String> conversionResult = NativeImageUtils.convertToArgsFile(args, outputDirectory.toPath());
Expand Down

0 comments on commit ca05132

Please sign in to comment.