1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.logging.log4j.core.async;
18
19 import java.util.Map;
20
21 import org.apache.logging.log4j.Level;
22 import org.apache.logging.log4j.Marker;
23 import org.apache.logging.log4j.ThreadContext.ContextStack;
24 import org.apache.logging.log4j.message.Message;
25
26 import com.lmax.disruptor.EventTranslator;
27
28
29
30
31
32
33
34 public class RingBufferLogEventTranslator implements
35 EventTranslator<RingBufferLogEvent> {
36
37 private AsyncLogger asyncLogger;
38 private String loggerName;
39 private Marker marker;
40 private String fqcn;
41 private Level level;
42 private Message message;
43 private Throwable thrown;
44 private Map<String, String> contextMap;
45 private ContextStack contextStack;
46 private String threadName;
47 private StackTraceElement location;
48 private long currentTimeMillis;
49
50
51 @Override
52 public void translateTo(RingBufferLogEvent event, long sequence) {
53 event.setValues(asyncLogger, loggerName, marker, fqcn, level, message,
54 thrown, contextMap, contextStack, threadName, location,
55 currentTimeMillis);
56 }
57
58 public void setValues(AsyncLogger asyncLogger, String loggerName,
59 Marker marker, String fqcn, Level level, Message message,
60 Throwable thrown, Map<String, String> contextMap,
61 ContextStack contextStack, String threadName,
62 StackTraceElement location, long currentTimeMillis) {
63 this.asyncLogger = asyncLogger;
64 this.loggerName = loggerName;
65 this.marker = marker;
66 this.fqcn = fqcn;
67 this.level = level;
68 this.message = message;
69 this.thrown = thrown;
70 this.contextMap = contextMap;
71 this.contextStack = contextStack;
72 this.threadName = threadName;
73 this.location = location;
74 this.currentTimeMillis = currentTimeMillis;
75 }
76
77 }