Skip to content

Commit

Permalink
[DCR Config] Change debug log to error log
Browse files Browse the repository at this point in the history
  • Loading branch information
anjuchamantha committed Apr 15, 2024
1 parent 0b159f1 commit 1a9357b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public void invoke(Request request, Response response) throws IOException, Servl
log.debug("Invalid pattern syntax of the request: ", e);
APIErrorResponseHandler.handleErrorResponse(null, response, HttpServletResponse.SC_BAD_REQUEST, null);
} catch (DCRMException e) {
log.debug("Error while getting DCR Configuration: ", e);
log.error("Error while getting DCR Configuration: ", e);
APIErrorResponseHandler.handleErrorResponse(null, response,
HttpServletResponse.SC_SERVICE_UNAVAILABLE, e);
} finally {
Expand Down

0 comments on commit 1a9357b

Please sign in to comment.