1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.iailab.module.shasteel.config;
|
| import feign.Logger;
| import org.springframework.context.annotation.Bean;
| import org.springframework.context.annotation.Configuration;
|
| @Configuration
| public class FeignLoggerLevelConfig {
|
| @Bean
| Logger.Level feignLoggerLevel() {
| return Logger.Level.FULL;
| }
| }
|
|