Skip to content

Commit

Permalink
fix(interceptor): Fix api key verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
wellimbharath committed Oct 12, 2021
1 parent 7a4c044 commit 8e55daf
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public Response intercept(Chain chain) throws IOException {
Request.Builder newRequestBuilder = original.newBuilder();
newRequestBuilder.addHeader(CryptoNotifierApiConstant.API_KEY_HEADER, this.apiKey);
Request newRequest = newRequestBuilder.build();
System.out.println(newRequest.headers());
return chain.proceed(newRequest);
}

Expand Down

0 comments on commit 8e55daf

Please sign in to comment.