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