summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/properties/log4j2.properties
blob: 440f371f9b5ca4d4d349afbb35f8b305429ed44a (plain) (blame)
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
status=error
name=log4j2PropertiesConfig

#
# root level logging configuration
#
rootLogger.level=all
rootLogger.appenderRefs=stdout
rootLogger.appenderRef.stdout.ref=logToConsole

# NOTE: The file logging appender is added and configured by the Java
#       implementation, since the logging file path and logic can only
#       be realized by the implementation (using system properties).

#
# configuration for console output
#
appenders=console

appender.console.type=Console
appender.console.name=logToConsole
appender.console.layout.type=PatternLayout
appender.console.layout.pattern=[%t] %-5p %F - %m%n
appender.console.filter.threshold.type=ThresholdFilter
appender.console.filter.threshold.level=info

#
# configuration for specific package or class loggers
#
#loggers=httpclientContext,httpclientContent,httpclientSsl

logger.hcContext.name=org.apache.hc.client5.http
logger.hcContext.level=warn
#logger.hcContext.additivity=false
#logger.hcContext.parent=rootLogger
logger.hcContext.appenderRef.console.ref = logToConsole

logger.hcSsl.name=org.apache.hc.client5.http.ssl
logger.hcSsl.level=debug
logger.hcSsl.appenderRef.console.ref = logToConsole

logger.hcIo.name=org.apache.hc.client5.http.impl.io
logger.hcIo.level=debug
logger.hcIo.appenderRef.console.ref = logToConsole