This commit is contained in:
crusader 2018-04-23 21:42:14 +09:00
parent 842426c560
commit 3a1cbe46c1

View File

@ -41,6 +41,7 @@ public class RPCServerHandler extends SimpleChannelInboundHandler<SocketFrame> {
reply = this.rpcInvoker.invoke(requestCodec); reply = this.rpcInvoker.invoke(requestCodec);
} catch (RPCException e) { } catch (RPCException e) {
logger.debug("Error", e);
error = e; error = e;
} }