[ 
https://issues.apache.org/jira/browse/LOG4J2-1015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14545900#comment-14545900
 ] 

Daniel Marcotte edited comment on LOG4J2-1015 at 5/15/15 6:08 PM:
------------------------------------------------------------------

Guys it works like a charm : 

{code}
import org.apache.logging.log4j.Marker;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.config.plugins.Plugin;
import org.apache.logging.log4j.core.lookup.StrLookup;

@Plugin(name = "marker", category = "Lookup")
public class MarkerLookup implements StrLookup {

    public static final String MARKER = "marker";

    public String lookup(String key) {
        return MARKER;
    }

    public String lookup(LogEvent event, String key) {
        final Marker marker = event.getMarker();
        return marker == null ? null : marker.getName();
    }
{code}

Thank you very much for your support!


was (Author: marcottedan):
Guys it works like a charm : 

{code}
import org.apache.logging.log4j.Marker;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.config.plugins.Plugin;
import org.apache.logging.log4j.core.lookup.StrLookup;

@Plugin(name = "marker", category = "Lookup")
public class MarkerLookup implements StrLookup {

    public static final String MARKER = "marker";

    public String lookup(String key) {
        return MARKER;
    }

    public String lookup(LogEvent event, String key) {
        final Marker marker = event.getMarker();
        if (marker == null)
            return null;
        return marker.getName();
    }
{code}

Thank you very much for your support!

> Add a way to route messages based on the %marker in Layout for RoutingAppender
> ------------------------------------------------------------------------------
>
>                 Key: LOG4J2-1015
>                 URL: https://issues.apache.org/jira/browse/LOG4J2-1015
>             Project: Log4j 2
>          Issue Type: New Feature
>          Components: Appenders
>    Affects Versions: 2.2
>            Reporter: Daniel Marcotte
>
> Hi,
> It seems there's no way to route messages based on the Marker in the 
> RoutingAppender. The "%marker" is not part of the Layout. When using SLF4J, 
> since it's a core feature of the facade, this would help greatly if it was 
> possible to route messages based on the Marker.
> Main StackOverFlow question (still unanswered) : 
> http://stackoverflow.com/questions/30111754/log4j2-is-there-a-way-to-route-logs-based-on-marker-with-the-routingappender
> Workaround StackOverFlow question (answered) : 
> http://stackoverflow.com/questions/30247323/how-to-create-custom-rewritepolicy-in-log4j2
> Thank you



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

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscr...@logging.apache.org
For additional commands, e-mail: log4j-dev-h...@logging.apache.org

Reply via email to