Skip to content

Commit

Permalink
Add response to debug log event in HttpSender#failRequest() (#11878)
Browse files Browse the repository at this point in the history
Signed-off-by: Gary Gregory <[email protected]>
  • Loading branch information
garydgregory authored Jun 6, 2024
1 parent 8b506b4 commit 1f78946
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ private boolean failRequest(Throwable failure)
return false;

if (LOG.isDebugEnabled())
LOG.debug("Request failure {}", exchange.getRequest(), failure);
LOG.debug("Request failure {}, response {}", exchange.getRequest(), exchange.getResponse(), failure);

// Mark atomically the request as completed, with respect
// to concurrency between request success and request failure.
Expand Down

0 comments on commit 1f78946

Please sign in to comment.