Commit d3899d0c authored by Quxl's avatar Quxl

x

parent 7475e1de
......@@ -25,10 +25,7 @@ public class ExceptionHandler implements HandlerExceptionResolver {
if (ex instanceof XException) {
Rjx rjx = ((XException) ex).getRjx();
mav.addAllObjects(rjx);
if(rjx.getCode() == 200) {
displayInLog = false;
}
if(rjx.getCode() == 300 || ex instanceof XRException) {
if(rjx.getCode() == 200 || rjx.getCode() == 300 || ex instanceof XRException) {
displayInLog = false;
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