Package org.apache.logging.log4j.ThreadContext

Examples of org.apache.logging.log4j.ThreadContext.ContextStack


        String fqcn = null;
        Level level = null;
        Message data = null;
        Throwable t = null;
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = null;
        StackTraceElement location = null;
        long currentTimeMillis = 0;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here


        String fqcn = null;
        Level level = null;
        Message data = null;
        Throwable t = null;
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = null;
        StackTraceElement location = null;
        long currentTimeMillis = 0;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

        String fqcn = null;
        Level level = null;
        Message data = null;
        Throwable t = null;
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = null;
        StackTraceElement location = null;
        long currentTimeMillis = 123;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

        String fqcn = null;
        Level level = null;
        Message data = new TimeMsg("", 567);
        Throwable t = null;
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = null;
        StackTraceElement location = null;
        long currentTimeMillis = 123;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

        String fqcn = "f.q.c.n";
        Level level = Level.TRACE;
        Message data = new SimpleMessage("message");
        Throwable t = new InternalError("not a real error");
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = "main";
        StackTraceElement location = null;
        long currentTimeMillis = 12345;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

        Level level = Level.TRACE;
        Message data = new SimpleMessage("message");
        Throwable t = new InternalError("not a real error");
        Map<String, String> map = new HashMap<String, String>();
        map.put("key", "value");
        ContextStack contextStack = new MutableThreadContextStack(Arrays.asList("a", "b"));
        String threadName = "main";
        StackTraceElement location = null;
        long currentTimeMillis = 12345;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

        String fqcn = null;
        Level level = null;
        Message data = null;
        Throwable t = null;
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = null;
        StackTraceElement location = null;
        long currentTimeMillis = 0;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

        String fqcn = null;
        Level level = null;
        Message data = null;
        Throwable t = null;
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = null;
        StackTraceElement location = null;
        long currentTimeMillis = 0;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

        String fqcn = null;
        Level level = null;
        Message data = null;
        Throwable t = null;
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = null;
        StackTraceElement location = null;
        long currentTimeMillis = 123;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

        String fqcn = null;
        Level level = null;
        Message data = new TimeMsg("", 567);
        Throwable t = null;
        Map<String, String> map = null;
        ContextStack contextStack = null;
        String threadName = null;
        StackTraceElement location = null;
        long currentTimeMillis = 123;
        evt.setValues(null, loggerName, marker, fqcn, level, data, t, map,
                contextStack, threadName, location, currentTimeMillis);
View Full Code Here

TOP

Related Classes of org.apache.logging.log4j.ThreadContext.ContextStack

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.