Skip to content

Commit

Permalink
[hotfix] Adjust info message
Browse files Browse the repository at this point in the history
The number of modules with bundled dependencies can exceed the number of deployed modules.
  • Loading branch information
zentol committed Oct 12, 2022
1 parent 205f70c commit b2d45ab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ static int run(File buildResult, Path root) throws IOException {
LOG.info(
"Extracted "
+ deployedModules.size()
+ " modules that were deployed of which "
+ " modules that were deployed and "
+ modulesWithBundledDependencies.keySet().size()
+ " bundle dependencies with a total of "
+ " modules which bundle dependencies with a total of "
+ modulesWithBundledDependencies.values().size()
+ " dependencies");

Expand Down

0 comments on commit b2d45ab

Please sign in to comment.