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.
 
 
Marvin Froeder 5965098e6c [ci skip] updating versions to next development iteration 11.7-SNAPSHOT 3 years ago
..
src [Snyk] Upgrade org.slf4j:slf4j-api from 1.7.13 to 1.7.30 (#1414) 3 years ago
README.md Recommend FULL logging level when using SLF4J (#1146) 5 years ago
pom.xml [ci skip] updating versions to next development iteration 11.7-SNAPSHOT 3 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())
                     .logLevel(Level.FULL)
                     .target(GitHub.class, "https://api.github.com");