SLF4J =================== This module allows directing Feign's logging to [SLF4J](http://www.slf4j.org/), 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: ```java GitHub github = Feign.builder() .logger(new Slf4jLogger()) .logLevel(Level.FULL) .target(GitHub.class, "https://api.github.com"); ```