Skip to content

Commit

Permalink
Fix an incorrect SLF4J logger call
Browse files Browse the repository at this point in the history
The format string had one too many formatting anchors.

This issue was found by SLF4J Helper for NetBeans IDE:
http://plugins.netbeans.org/plugin/72557/
  • Loading branch information
dtrebbien authored and mprimi committed Oct 11, 2017
1 parent f98a0b0 commit c42d662
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public Response intercept(
.addHeader(HttpHeaders.AUTHORIZATION, accessToken.getTokenType() + " " + accessToken.getAccessToken())
.build();

log.debug("Sending request {} on {} {} {}", newRequest.url(), chain.connection(), newRequest.headers());
log.debug("Sending request {} on {} {}", newRequest.url(), chain.connection(), newRequest.headers());

return chain.proceed(newRequest);
}
Expand Down

0 comments on commit c42d662

Please sign in to comment.