Browse Source

reduce verbosity of <apply skipemptyfilesets>

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@493733 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 18 years ago
parent
commit
bae15b693d
2 changed files with 4 additions and 1 deletions
  1. +3
    -0
      WHATSNEW
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/ExecuteOn.java

+ 3
- 0
WHATSNEW View File

@@ -46,6 +46,9 @@ Other changes:
* add classpathref attribute to <whichresource> * add classpathref attribute to <whichresource>
Bugzilla 41158. Bugzilla 41158.


* reduce logging noise of <apply skipemptyfilesets="true">
Bugzilla 29154

Changes from Ant 1.6.5 to Ant 1.7.0 Changes from Ant 1.6.5 to Ant 1.7.0
=================================== ===================================




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

@@ -510,7 +510,7 @@ public class ExecuteOn extends ExecTask {


log("Skipping fileset for directory " + base + ". It is " log("Skipping fileset for directory " + base + ". It is "
+ ((includedCount > 0) ? "up to date." : "empty."), + ((includedCount > 0) ? "up to date." : "empty."),
Project.MSG_INFO);
verbose ? Project.MSG_INFO : Project.MSG_VERBOSE);
} }


/** /**


Loading…
Cancel
Save