标签:file class rgba url sam str 日志 com ogg
方法一:
使用Feign拦截器
/** * @author: Sam.yang * @date: 2020/11/12 16:55 * @desc: feign请求拦截 */ @Slf4j @Component public class FeignRequestInterceptor implements RequestInterceptor { @Override public void apply(RequestTemplate template) { log.info("feign调用开始: url->【{}】,body->【{}】,", template.url(), new String(template.body())); } }
方法二:
指定日志Feign等级
/** * @author: Sam.yang * @date: 2020/11/5 9:58 * @desc: Feign调用日志打印 */ @Profile(value = {"dev", "test", "test1"}) @Configuration public class FeignConfiguration { @Bean Logger.Level feignLoggerLevel() { return Logger.Level.NONE; } }
标签:file class rgba url sam str 日志 com ogg
原文地址:https://www.cnblogs.com/july-sunny/p/13965198.html