[MNG-8155] Improve not built error message (#1599)

Part of MNG-8155
This commit is contained in:
Elliotte Rusty Harold 2024-07-07 18:42:17 -04:00 committed by GitHub
parent 4810cc1fd6
commit 910b39cb2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -295,9 +295,9 @@ public class ExecutionEventLogger extends AbstractExecutionListener {
init();
logger.info("");
infoLine('-');
infoMain("Skipping " + event.getProject().getName());
logger.info("This project has been banned from the build due to previous failures.");
String name = event.getProject().getName();
infoMain("Skipping " + name);
logger.info(name + " was not built because a module it depends on failed to build.");
infoLine('-');
}