ammachado commented on code in PR #10488: URL: https://github.com/apache/camel/pull/10488#discussion_r1254408056
########## components/camel-xslt-saxon/src/main/java/org/apache/camel/component/xslt/saxon/XsltSaxonBuilder.java: ########## @@ -56,4 +69,66 @@ public void setAllowStAX(boolean allowStAX) { protected XmlSourceHandlerFactoryImpl createXmlSourceHandlerFactoryImpl() { return new SaxonXmlSourceHandlerFactoryImpl(); } + + @Override + protected Templates createTemplates(TransformerFactory factory, Source source) throws TransformerConfigurationException { + final Templates templates = super.createTemplates(factory, source); + if (templates instanceof TemplatesImpl templatesImpl && getXsltMessageLogger() != null) { Review Comment: Fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org