This closes #199 pull request at github.com/apache/antmaster
| @@ -67,6 +67,7 @@ Chris Hegarty | |||||
| Chris Povirk | Chris Povirk | ||||
| Christian Knorr | Christian Knorr | ||||
| Christian Schmidt | Christian Schmidt | ||||
| Christoph Dreis | |||||
| Christoph Gysin | Christoph Gysin | ||||
| Christoph Wilhelms | Christoph Wilhelms | ||||
| Christophe Labouisse | Christophe Labouisse | ||||
| @@ -1,6 +1,8 @@ | |||||
| Changes from Ant 1.10.13 TO Ant 1.10.14 | 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 | Changes from Ant 1.10.12 TO Ant 1.10.13 | ||||
| ======================================= | ======================================= | ||||
| @@ -296,6 +296,10 @@ | |||||
| <first>Christian</first> | <first>Christian</first> | ||||
| <last>Schmidt</last> | <last>Schmidt</last> | ||||
| </name> | </name> | ||||
| <name> | |||||
| <first>Christoph</first> | |||||
| <last>Dreis</last> | |||||
| </name> | |||||
| <name> | <name> | ||||
| <first>Christoph</first> | <first>Christoph</first> | ||||
| <last>Gysin</last> | <last>Gysin</last> | ||||
| @@ -1258,7 +1258,7 @@ public class XSLTProcess extends MatchingTask implements XSLTLogger { | |||||
| stylesheetLoaded = true; | stylesheetLoaded = true; | ||||
| try { | try { | ||||
| log("Loading stylesheet " + stylesheet, Project.MSG_INFO); | |||||
| log("Loading stylesheet " + stylesheet.getName(), Project.MSG_INFO); | |||||
| // We call liaison.configure() and then liaison.setStylesheet() | // We call liaison.configure() and then liaison.setStylesheet() | ||||
| // so that the internal variables of liaison can be set up | // so that the internal variables of liaison can be set up | ||||
| if (liaison instanceof XSLTLiaison2) { | if (liaison instanceof XSLTLiaison2) { | ||||