Browse Source

adding messages at the -v level to make it clearer what is going on. Although we always log defined components at -debug, once you do presetdef and macrodef more people may want to see the output. And when you start defining into namespaces, you really want to see what is going on...

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@279576 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 20 years ago
parent
commit
be59223d0d
2 changed files with 3 additions and 0 deletions
  1. +2
    -0
      src/main/org/apache/tools/ant/taskdefs/MacroDef.java
  2. +1
    -0
      src/main/org/apache/tools/ant/taskdefs/PreSetDef.java

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

@@ -339,6 +339,8 @@ public class MacroDef extends AntlibDefinition {
getProject());

helper.addDataTypeDefinition(def);
log("creating macro " + name,Project.MSG_VERBOSE);

}




+ 1
- 0
src/main/org/apache/tools/ant/taskdefs/PreSetDef.java View File

@@ -95,6 +95,7 @@ public class PreSetDef extends AntlibDefinition implements TaskContainer {
newDef.setName(name);

helper.addDataTypeDefinition(newDef);
log("defining preset "+name,Project.MSG_VERBOSE);
}

/**


Loading…
Cancel
Save