Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,9 @@ private String selectMvnRuntime(final Path manifestPath) {
try {
// verify maven wrapper is accessible
Operations.runProcess(manifest.getParent(), mvnw, ARG_VERSION);
log.fine(String.format("using maven wrapper from : %s", mvnw));
if (debugLoggingIsNeeded()) {
log.info(String.format("using maven wrapper from : %s", mvnw));
}
return mvnw;
} catch (Exception e) {
log.warning(
Expand All @@ -393,7 +395,9 @@ private String selectMvnRuntime(final Path manifestPath) {
}
// If maven wrapper is not requested or not accessible, fall back to use mvn
String mvn = Operations.getExecutable(MVN, ARG_VERSION);
log.fine(String.format("using mvn executable from : %s", mvn));
if (debugLoggingIsNeeded()) {
log.info(String.format("using mvn executable from : %s", mvn));
}
return mvn;
}

Expand Down
Loading