-
Notifications
You must be signed in to change notification settings - Fork 0
/
log4j2.xml
33 lines (33 loc) · 1.22 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
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<!-- Секция аппендеров -->
<Appenders>
<!-- Консольный аппендер -->
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout>
<Pattern>%d %-5p [%t] %c{1} (%F:%L) - %m%n</Pattern>
</PatternLayout>
</Console>
<!-- Файловый аппендер -->
<File name="file" fileName="log/log.log">
<PatternLayout>
<Pattern>%p %d{d.MM.y} %d{HH:mm:ss} (%C{1}) - %m%n</Pattern>
</PatternLayout>
</File>
<!-- Файловый аппендер -->
<File name="file2" fileName="log/log2.log">
<PatternLayout>
<Pattern>%p %d{d.MM.y} %d{HH:mm:ss} (%C{1}) - %m%n</Pattern>
</PatternLayout>
</File>
</Appenders>
<!-- Секция логгеров -->
<Loggers>
<Logger name="ru.bstu.it51.hlopov.Lab2" level="debug"/>
<Root level="all">
<AppenderRef ref="Console"/>
<AppenderRef ref="file" level="debug"/>
<AppenderRef ref="file2" level="warn"/>
</Root>
</Loggers>
</Configuration>