Skip to content

Commit

Permalink
adding log for gradle
Browse files Browse the repository at this point in the history
Signed-off-by: Arun Venmany <[email protected]>
  • Loading branch information
arunvenmany-ibm committed Jan 15, 2025
1 parent f0cdf79 commit a2c3832
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4053,6 +4053,7 @@ private void initWatchLoop() throws IOException {
// for ci.gradle, map will be null always
// we can always trigger recompile for gradle, as we gradle is using gradle task state to recompile
if (projectRecompileMap == null) {
info("Recompile " + project.getProjectName());
triggerUpstreamModuleCompile(project, false);
} else if (Boolean.TRUE.equals(projectRecompileMap.get(project.getProjectName()))) {
info("Recompile " + project.getProjectName() + " due to an earlier compilation error");
Expand All @@ -4068,6 +4069,7 @@ private void initWatchLoop() throws IOException {
// for ci.gradle, map will be null always
// we can always trigger recompile for gradle, as we gradle is using gradle task state to recompile
if (projectRecompileMap == null) {
info("Recompile " + getProjectName());
triggerMainModuleCompile(false);
} else if (Boolean.TRUE.equals(projectRecompileMap.get(getProjectName()))) {
info("Recompile " + getProjectName() + " due to an earlier compilation error");
Expand Down

0 comments on commit a2c3832

Please sign in to comment.