Commit 23405ffe by huangfusuper

规范日志输出

parent bf814404
...@@ -27,10 +27,10 @@ public class NettyClientHandler extends SimpleChannelInboundHandler<RpcResponse> ...@@ -27,10 +27,10 @@ public class NettyClientHandler extends SimpleChannelInboundHandler<RpcResponse>
@Override @Override
protected void channelRead0(ChannelHandlerContext ctx, RpcResponse rpcResponse) throws Exception { protected void channelRead0(ChannelHandlerContext ctx, RpcResponse rpcResponse) throws Exception {
logger.info("------------------客户端接收到响应:{}--------------",rpcResponse); logger.debug("------------------客户端接收到响应:{}--------------",rpcResponse);
// notify response // notify response
rpcInvokerFactory.notifyInvokerFuture(rpcResponse.getRequestId(), rpcResponse); rpcInvokerFactory.notifyInvokerFuture(rpcResponse.getRequestId(), rpcResponse);
logger.info("------------------客户端解锁---------------"); logger.debug("------------------客户端解锁---------------");
} }
@Override @Override
......
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