refactor(logging): 屏蔽 Apache HttpClient 中 Debug 级别的日志.

Debug 级别下 HttpClient 会把请求和响应完全打印到日志中, 在 Debug 过程中不是那么的友好, 所以屏蔽它.
This commit is contained in:
LamGC 2022-02-20 16:51:14 +08:00
parent f8f80840c6
commit 19ad5e0c1a
Signed by: LamGC
GPG Key ID: 6C5AE2A913941E1D

View File

@ -1,6 +1,7 @@
<configuration scan="false" debug="false">
<include resource="base-logback.xml"/>
<logger name="org.apache.http" level="INFO"/>
<root level="DEBUG">
<appender-ref ref="FILE_OUT"/>
<appender-ref ref="STD_ERR"/>