Feign logging not working when alter level
You need to configure logging in application.properties as below: logging.level.<package path>.MyClient=DEBUG If you’re using application.yml then: logging.level.<package path>.MyClient: DEBUG The log level can be set to tell Feign how much to log. Options are: NONE, No logging (DEFAULT) BASIC, Log only the request method and URL and the response status code and execution time HEADERS, … Read more