You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Jan Bernhardt (JIRA)" <ji...@apache.org> on 2015/04/10 14:55:12 UTC

[jira] [Created] (CXF-6345) Support Logging in JexlClaimMapper scripts

Jan Bernhardt created CXF-6345:
----------------------------------

             Summary: Support Logging in JexlClaimMapper scripts
                 Key: CXF-6345
                 URL: https://issues.apache.org/jira/browse/CXF-6345
             Project: CXF
          Issue Type: Improvement
          Components: STS
    Affects Versions: 2.7.15, 3.0.4
            Reporter: Jan Bernhardt
            Assignee: Jan Bernhardt
            Priority: Minor
             Fix For: 3.1.0, 2.7.16, 3.0.5


To improve debugging of Jexl scripts it will be helpful to provide a logging util.

You can create log statements like this:
{code}
LOG:fine("Debug message");
LOG:info("Useful information");
LOG:warning("This is a warning");
LOG:severe("Error message");
{code}
(on) 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:
{code}
org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(MyMapperTest.class);
jcm = new JexlClaimsMapper();
jcm.getJexlEngine().getFunctions().put("LOG", logger);
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)