Commit d3899d0c authored by Quxl's avatar Quxl

x

parent 7475e1de
...@@ -25,10 +25,7 @@ public class ExceptionHandler implements HandlerExceptionResolver { ...@@ -25,10 +25,7 @@ public class ExceptionHandler implements HandlerExceptionResolver {
if (ex instanceof XException) { if (ex instanceof XException) {
Rjx rjx = ((XException) ex).getRjx(); Rjx rjx = ((XException) ex).getRjx();
mav.addAllObjects(rjx); mav.addAllObjects(rjx);
if(rjx.getCode() == 200) { if(rjx.getCode() == 200 || rjx.getCode() == 300 || ex instanceof XRException) {
displayInLog = false;
}
if(rjx.getCode() == 300 || ex instanceof XRException) {
displayInLog = false; displayInLog = false;
logger.debug(ex.getMessage()); logger.debug(ex.getMessage());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment