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.
13 lines
507 B
13 lines
507 B
11 years ago
|
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())
|
||
|
.target(GitHub.class, "https://api.github.com");
|
||
|
```
|