在httpClient中是打印了请求和返回的debug日志的,只需要将指定包路径设置debug日志级别即可。
包路径如下:
org.apache.hc.client5.http.wire
org.apache.hc.client5.http.headers
SpringBoot项目设置示例:
logging:
level:
org.apache.hc.client5.http.wire: debug
org.apache.hc.client5.http.headers: debug
特此记录,后续使用。