-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog4j2.xml
More file actions
23 lines (20 loc) · 1005 Bytes
/
log4j2.xml
File metadata and controls
23 lines (20 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<!-- Use this pattern for Kubernetes deployments -->
<PatternLayout pattern="%d{HH:mm:ss.SSS} %level %C:%L [%t] - %m%n" />
<!-- Use this pattern for local debugging -->
<!-- <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %highlight{%level}{FATAL=bg_red, ERROR=red, WARN=yellow, INFO=green, DEBUG=blue} %logger{36} - %msg%n" /> -->
</Console>
</Appenders>
<Loggers>
<Root level="INFO">
<AppenderRef ref="Console"/>
</Root>
<Logger name="org.apache.http" level="INFO"/>
<Logger name="eu.europeana.api.record.web.RecordController" level="DEBUG"/>
<!-- Log only error. suppress warn messages - specially "Found more than one class mapped to collection"-->
<Logger name="dev.morphia.mapping.Mapper" level="ERROR"/>
</Loggers>
</Configuration>