Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/src/main/java/feign/Logger.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected void logRequest(String configKey, Level logLevel, Request request) {
}
}

void logRetry(String configKey, Level logLevel) {
protected void logRetry(String configKey, Level logLevel) {
log(configKey, "---> RETRYING");
}

Expand Down Expand Up @@ -107,7 +107,7 @@ protected Response logAndRebufferResponse(String configKey, Level logLevel, Resp
return response;
}

IOException logIOException(String configKey, Level logLevel, IOException ioe, long elapsedTime) {
protected IOException logIOException(String configKey, Level logLevel, IOException ioe, long elapsedTime) {
log(configKey, "<--- ERROR %s: %s (%sms)", ioe.getClass().getSimpleName(), ioe.getMessage(),
elapsedTime);
if (logLevel.ordinal() >= Level.FULL.ordinal()) {
Expand Down