使用Spring Cloud Feign 日志查看请求响应
2021-07-10 06:04
标签:code 响应 config bean -- 枚举 ugui ogg inf 在使用微服务时,常常会用 使用Spring Cloud Feign 日志查看请求响应 标签:code 响应 config bean -- 枚举 ugui ogg inf 原文地址:https://www.cnblogs.com/peterpoker/p/9563478.htmlfeign
做客户端去调用别的微服务,但是在日志中很难查看到具体的请求和响应。因此,需要把feign默认的日志打开。日志设置
@Configuration
public class FeignLogConfiguration {
@Bean
Logger.Level feignLoggerLevel() {
return Logger.Level.FULL;
}
}
Logger.Level
是枚举类
application.properties
或者application.yml
文件中设置Feign客户端的日志级别----->可以看到feign客户端的请求响应
logging.level.com.wugui.spring.cloud.weather.Service:debug
日志查看
文章标题:使用Spring Cloud Feign 日志查看请求响应
文章链接:http://soscw.com/index.php/essay/103096.html