Springboot项目关闭Httpclient的Debug日志
Posted muxi0407
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot项目关闭Httpclient的Debug日志相关的知识,希望对你有一定的参考价值。
今天在做httpclient测试时,发现控制台打印了好多请求相关的信息,如何去掉这些不打印?
(2)在配置文件包下加入logback.xml文件,文件内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<configuration debug="false">
<!-- definition of appender STDOUT -->
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%-4relative [%thread] %-5level %logger35 - %msg %n</pattern>
</encoder>
</appender>
<root level="ERROR">
<!-- appender referenced after it is defined -->
<appender-ref ref="STDOUT"/>
</root>
</configuration>
(3)文件位置
(4)再次测试,发现就没有那些日志了
解决问题原链接:https://blog.csdn.net/evanxuhe/article/details/79488672
原文链接:https://blog.csdn.net/sunnyzyq/article/details/89457805
以上是关于Springboot项目关闭Httpclient的Debug日志的主要内容,如果未能解决你的问题,请参考以下文章
springboot + seata + httpclient调用
我终于放弃HttpClient,选择这个牛逼的神仙工具!贼爽!
.NET Core - HttpClient 与 RestSharp [关闭]