Add a little more context to ErrorPageFilter log
Add the servlet and context path along with the exception message to the error logged in ErrorPageFilter. See gh-1427
This commit is contained in:
parent
2d67452128
commit
f4dc090bae
|
|
@ -143,7 +143,12 @@ class ErrorPageFilter extends AbstractConfigurableEmbeddedServletContainer imple
|
|||
rethrow(ex);
|
||||
return;
|
||||
}
|
||||
logger.error("Forwarding to error page", ex);
|
||||
if (logger.isErrorEnabled()) {
|
||||
String message = "Forwarding to error page from request ["
|
||||
+ request.getServletPath() + request.getPathInfo()
|
||||
+ "] due to exception [" + ex.getMessage() + "]";
|
||||
logger.error(message, ex);
|
||||
}
|
||||
setErrorAttributes(request, 500, ex.getMessage());
|
||||
request.setAttribute(ERROR_EXCEPTION, ex);
|
||||
request.setAttribute(ERROR_EXCEPTION_TYPE, type.getName());
|
||||
|
|
|
|||
Loading…
Reference in New Issue