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; } }