Browse Source

xslt task - log only the stylesheet resource name

This closes #199 pull request at github.com/apache/ant
master
Christoph Dreis Jaikiran Pai 2 years ago
parent
commit
fe9bf0f1a2
4 changed files with 8 additions and 1 deletions
  1. +1
    -0
      CONTRIBUTORS
  2. +2
    -0
      WHATSNEW
  3. +4
    -0
      contributors.xml
  4. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java

+ 1
- 0
CONTRIBUTORS View File

@@ -67,6 +67,7 @@ Chris Hegarty
Chris Povirk
Christian Knorr
Christian Schmidt
Christoph Dreis
Christoph Gysin
Christoph Wilhelms
Christophe Labouisse


+ 2
- 0
WHATSNEW View File

@@ -1,6 +1,8 @@
Changes from Ant 1.10.13 TO Ant 1.10.14
=======================================

* log only the stylesheet name in the xslt task.
Github Pull Request #199

Changes from Ant 1.10.12 TO Ant 1.10.13
=======================================


+ 4
- 0
contributors.xml View File

@@ -296,6 +296,10 @@
<first>Christian</first>
<last>Schmidt</last>
</name>
<name>
<first>Christoph</first>
<last>Dreis</last>
</name>
<name>
<first>Christoph</first>
<last>Gysin</last>


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

@@ -1258,7 +1258,7 @@ public class XSLTProcess extends MatchingTask implements XSLTLogger {
stylesheetLoaded = true;

try {
log("Loading stylesheet " + stylesheet, Project.MSG_INFO);
log("Loading stylesheet " + stylesheet.getName(), Project.MSG_INFO);
// We call liaison.configure() and then liaison.setStylesheet()
// so that the internal variables of liaison can be set up
if (liaison instanceof XSLTLiaison2) {


Loading…
Cancel
Save