-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
log4j2.xml
47 lines (47 loc) · 2.74 KB
/
log4j2.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8" ?>
<Configuration status="info" name="ReLoDed" packages="" monitorInterval="5">
<Appenders>
<Console name="console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t %c:%L] %highlight{%-5level}: %msg%n%throwable" />
<Filters>
<MarkerFilter marker="SCRIPT" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="EFFECTS" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="DEFF" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="INPUT" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="CONTROLLER_DB" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="CONTROLLER_VERBOSE" onMatch="DENY" onMismatch="NEUTRAL" />
<MarkerFilter marker="CAMERA" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="SPU" onMatch="ACCEPT" onMismatch="NEUTRAL"/>
<MarkerFilter marker="AUDIO_THREAD" onMatch="ACCEPT" onMismatch="NEUTRAL"/>
<MarkerFilter marker="SEQUENCER" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="VOICE" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="SEQUENCE" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="DISASSEMBLY" onMatch="DENY" onMismatch="NEUTRAL"/>
</Filters>
</Console>
<File name="file" fileName="debug.log" immediateFlush="false" append="false">
<PatternLayout pattern="%d{yyy-MM-dd HH:mm:ss.SSS} [%t %c:%L] %-5level: %msg%n%throwable"/>
<Filters>
<MarkerFilter marker="SCRIPT" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="EFFECTS" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="DEFF" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="INPUT" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="CONTROLLER_DB" onMatch="ACCEPT" onMismatch="NEUTRAL" />
<MarkerFilter marker="CONTROLLER_VERBOSE" onMatch="DENY" onMismatch="NEUTRAL" />
<MarkerFilter marker="CAMERA" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="SPU" onMatch="ACCEPT" onMismatch="NEUTRAL"/>
<MarkerFilter marker="AUDIO_THREAD" onMatch="ACCEPT" onMismatch="NEUTRAL"/>
<MarkerFilter marker="SEQUENCER" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="VOICE" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="SEQUENCE" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="DISASSEMBLY" onMatch="ACCEPT" onMismatch="NEUTRAL"/>
</Filters>
</File>
</Appenders>
<Loggers>
<Root level="info" additivity="false">
<AppenderRef ref="console"/>
<AppenderRef ref="file"/>
</Root>
</Loggers>
</Configuration>