Skip to content

Commit

Permalink
Merge pull request #114 from cherylking/master
Browse files Browse the repository at this point in the history
Change log level to verbose for some messages
  • Loading branch information
cherylking authored Oct 3, 2019
2 parents a0fe834 + 58e64bb commit b1913a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/openliberty/tools/ant/AbstractTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ protected void initTask() {
}
}

log(MessageFormat.format(messages.getString("info.variable"), "server.config.dir", serverConfigDir.getCanonicalPath()));
log(MessageFormat.format(messages.getString("info.variable"), "server.config.dir", serverConfigDir.getCanonicalPath()), Project.MSG_VERBOSE);

if (outputDir != null) {
log(MessageFormat.format(messages.getString("info.variable"), "outputDir", outputDir.getCanonicalPath()), Project.MSG_VERBOSE);
Expand All @@ -121,7 +121,7 @@ protected void initTask() {
}
}

log(MessageFormat.format(messages.getString("info.variable"), "server.output.dir", serverOutputDir.getCanonicalPath()));
log(MessageFormat.format(messages.getString("info.variable"), "server.output.dir", serverOutputDir.getCanonicalPath()), Project.MSG_VERBOSE);
} catch (IOException e) {
throw new BuildException(e);
}
Expand Down

0 comments on commit b1913a4

Please sign in to comment.