Details
Description
To improve debugging of Jexl scripts it will be helpful to provide a logging util.
You can create log statements like this:
LOG:fine("Debug message"); LOG:info("Useful information"); LOG:warning("This is a warning"); LOG:severe("Error message");
Note the colon instead of the dot after LOG
If you don't want to use the java.util.logging.Logger you can setup for example a SLF4J logger like this:
org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(MyMapperTest.class); jcm = new JexlClaimsMapper(); jcm.getJexlEngine().getFunctions().put("LOG", logger);
Attachments
Issue Links
- is related to
-
CXF-5925 JEXL Support for STS Claim Mappings
- Closed