Skip to content

Commit

Permalink
[MGPG-96] add INFO message
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed Apr 28, 2023
1 parent 0498a82 commit bad6b57
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -98,6 +98,9 @@ public void execute() throws MojoExecutionException, MojoFailureException {
signer.setBuildDirectory(new File(project.getBuild().getDirectory()));
signer.setBaseDirectory(project.getBasedir());

getLog().info("Signing " + items.size() + " file" + ((items.size() > 1) ? "s" : "") + " with "
+ ((signer.keyname == null) ? "default" : signer.keyname) + " secret key.");

for (FilesCollector.Item item : items) {
getLog().debug("Generating signature for " + item.getFile());

Expand Down

0 comments on commit bad6b57

Please sign in to comment.