All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rebue.sbs.feign.FeignConfig Maven / Gradle / Ivy

There is a newer version: 3.5.33
Show newest version
package rebue.sbs.feign;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import feign.Logger;

@Configuration
public class FeignConfig {

    /**
     * 只有在这里才能控制feign的日志级别
     */
    @Bean
    Logger.Level feignLoggerLevel() {
//        return Logger.Level.FULL;
        return Logger.Level.BASIC;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy