Browse Source

Verbose it is ...

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275230 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 22 years ago
parent
commit
9e7f7bf7be
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/Ant.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/Ant.java View File

@@ -411,10 +411,10 @@ public class Ant extends Task {

if (target != null && !"".equals(target)) {
try {
log("Entering " + antFile + "...");
log("Entering " + antFile + "...", Project.MSG_VERBOSE);
newProject.executeTarget(target);
} finally {
log("Exiting " + antFile + ".");
log("Exiting " + antFile + ".", Project.MSG_VERBOSE);
}
}
} finally {


Loading…
Cancel
Save