开发过程中,有时候需要查看 feign 的日志,那么怎么打开呢
public class FeignConfig {
@Bean
public Logger.Level level() {
return Logger.Level.FULL;
}
}
在 注解上写上 configuration = FeignConfig.class ,示例:
@FeignClient(contextId = "remotePService",
value = ServiceNameConstants.BUSINESS_SERVICE,
configuration = FeignConfig.class)
public interface RemoteMissionService {
...
}
因为我使用了 slf4j + logback,这里我要打开 feigin服务类 的日志,这么设置:
logging:
level:
root: INFO
demo.business.api.*: DEBUG