Skip to content

Commit

Permalink
chore: Including hotfix-Zendesk-102380 (#26148)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcastro-dotcms committed Sep 17, 2023
1 parent d0653d2 commit d8b4665
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ public void doGet(HttpServletRequest req, HttpServletResponse resp) throws Servl
resp.sendError(HttpServletResponse.SC_NOT_FOUND);
}
}catch (Exception e) {
Logger.debug(BinaryExporterServlet.class, e.getMessage(),e);
Logger.error(BinaryExporterServlet.class, "[Exception] An error occurred when accessing '" + uri + "'", e);
Logger.error(BinaryExporterServlet.class, "[Exception] An error occurred when accessing '" + uri + "': " + e.getMessage());
if(!resp.isCommitted()){
resp.sendError(HttpServletResponse.SC_NOT_FOUND);
Expand Down

0 comments on commit d8b4665

Please sign in to comment.