Skip to content

Commit

Permalink
chore: debugger fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sbansla committed Jun 27, 2024
1 parent d473663 commit 5873f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/sendgrid/http/ApiKeyRestClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public ApiKeyRestClient build() {


public void logRequest(final Request request) {
// if (logger.isDebugEnabled()) {
if (logger.isDebugEnabled()) {
logger.debug("-- BEGIN Sendgrid API Request --");
logger.debug("request method: " + request.getMethod());
logger.debug("request URL: " + request.getUrl().toString());
Expand All @@ -107,5 +107,5 @@ public void logRequest(final Request request) {

logger.debug("-- END Sendgrid API Request --");
}
// }
}
}

0 comments on commit 5873f9d

Please sign in to comment.