Feign makes writing java http clients easier
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Adrian Cole 70b6cd8c5b Reformats code according to Google Java Style 10 years ago
..
src Reformats code according to Google Java Style 10 years ago
README.md slf4j: add slf4j integration module (#94) 11 years ago
build.gradle Removes guava test dependency in favor of AssertJ 10 years ago

README.md

SLF4J

This module allows directing Feign's logging to SLF4J, allowing you to easily use a logging backend of your choice (Logback, Log4J, etc.)

To use SLF4J with Feign, add both the SLF4J module and an SLF4J binding of your choice to your classpath. Then, configure Feign to use the Slf4jLogger:

GitHub github = Feign.builder()
                     .logger(new Slf4jLogger())
                     .target(GitHub.class, "https://api.github.com");