Added printing exception on error

This commit is contained in:
magenoxx 2017-04-19 11:48:43 +03:00 committed by ayratn
parent b04e13aa4b
commit c632b207f9

View file

@ -1227,6 +1227,7 @@ public class MageServerImpl implements MageServer {
try {
return action.execute();
} catch (Exception ex) {
logger.error(ex, ex);
handleException(ex);
}
}