ZUL Logging

The example class how to simplify logging in the ZUL zscript code. It is targeted especially for the JBoss logging org.jboss.logging.Logger, but can be easily changed for java.util.logging or any other logging library. Usage inside ZUL:

<zscript><![CDATA[

Logger LOG = LogUtils.getLoggerForZul(page);

// ...

LOG.info("some info");

]]></zscript>

Released under the Poetic License. Post a comment here or under my blog post, if you have some suggestion. Thanks.