Skip to content

Commit

Permalink
Fix logging (which will shortly be almost entirely removed)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Apr 12, 2023
1 parent f56e2fa commit 6e9ac2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private HttpRequest maybeModifyHttpResponse(HttpRequest request) {
*/
public Tuple<HttpRequest, HttpResponse> modifyAndExecuteHttpRequest(HttpRequest request) throws IOException {
final HttpRequest modifiedRequest = maybeModifyHttpResponse(request);
logger.info("--> executing request: {}", request);
logger.info("--> executing request: {}", modifiedRequest);
final HttpResponse response = httpClient.execute(modifiedRequest);
logger.info("--> webhook response status: {} — {}", response.status(), response);
return Tuple.tuple(modifiedRequest, response);
Expand Down

0 comments on commit 6e9ac2a

Please sign in to comment.