Skip to content

Commit

Permalink
[renault] HTTP responses to debug not warn.
Browse files Browse the repository at this point in the history
Signed-off-by: Doug Culnane <doug@culnane.net>
  • Loading branch information
dougculnane committed Aug 4, 2023
1 parent f98ed3f commit 8a2a776
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ private void logKamereonCall(Request request, ContentResponse response) {
response.getStatus(), response.getReason(), response.getContentAsString());
}
} else {
logger.warn("Kamereon Request: {} Response: [{}] {}\n{}", request.getURI().toString(), response.getStatus(),
response.getReason(), response.getContentAsString());
logger.debug("Kamereon Request: {} Response: [{}] {}\n{}", request.getURI().toString(),
response.getStatus(), response.getReason(), response.getContentAsString());
}
}

Expand Down

0 comments on commit 8a2a776

Please sign in to comment.