其他分享
首页 > 其他分享> > OpenFeign 的日志配置

OpenFeign 的日志配置

作者:互联网

  1. 添加 Configuration 配置类
@Configuration
public class OpenFeignConfiguration {

    @Bean
    public IRule loadBalancerRule(){
        return new RandomRule();
    }

    @Bean
    public Logger.Level feignLogLevel(){
        return Logger.Level.FULL;
    }
}
  1. 在 yml 配置文件中开启 Feign 客户端
logging:
  level:
    com.atguigu.springcloud.service.PaymentFeignService: debug

标签:OpenFeign,Level,配置,HEADERS,Bean,BASIC,日志,public,Logger
来源: https://www.cnblogs.com/ayiblogs/p/16276696.html