Skip to content

Commit

Permalink
chore: add some logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Jan 11, 2023
1 parent 959be9e commit 2283b05
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/de/dentrassi/rpm/builder/RpmMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,9 @@ public void execute() throws MojoExecutionException, MojoFailureException {
testLeadFlags();

final BuilderOptions options = new BuilderOptions();
options.setFileDigestAlgorithm(evalDigestAlgorithm(this.fileDigestAlgorithm));
DigestAlgorithm fileDigestAlgorithm = evalDigestAlgorithm(this.fileDigestAlgorithm);
this.logger.info("File Digest Algorithm: %s", fileDigestAlgorithm.getAlgorithm());
options.setFileDigestAlgorithm(fileDigestAlgorithm);

// setup basic signature processors

Expand Down

0 comments on commit 2283b05

Please sign in to comment.