沙钢智慧能源系统后端代码
dengzedong
2025-02-10 061b44457c077a19967b9b03ee94c009a707f265
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;
    }
}