blob: eaa9a6691524135e4ee7d041534be58373926813 (
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
|
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
logger.httpclientContext.name=org.apache.hc.client5.http
logger.httpclientContext.level=warn
logger.httpclientContent.name=org.apache.hc.client5.http.wire
logger.httpclientContent.level=warn
|