Skip to content

Commit

Permalink
Added request & response debugging for AuthenticationApi
Browse files Browse the repository at this point in the history
  • Loading branch information
t-burch committed Jul 8, 2024
1 parent 9923b1d commit 61e0d1d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ public String accessToken() throws Exception {
} catch (Exception e) {
log.debug(e.getMessage());
log.debug(exc.getRequest().toString());
log.debug(exc.getResponse().getHeader().toString(), responseBody);
log.debug(exc.getResponse().getHeader().toString());
log.debug(responseBody);
}
return "";
}
Expand Down

0 comments on commit 61e0d1d

Please sign in to comment.