未验证 提交 f4897b56 编写于 作者: T tswstarplanet 提交者: GitHub

fix blocker problem (#2244)

* fix blocker problem

* use error level to log exception
上级 07149714
......@@ -301,7 +301,7 @@ public class NettyRemotingClient {
return channel;
}
} catch (Exception ex) {
logger.info("connect to {} error {}", address, ex);
logger.error("connect to {} error", address, ex);
}
return null;
}
......
......@@ -117,7 +117,7 @@ public class NettyServerHandler extends ChannelInboundHandlerAdapter {
try {
pair.getLeft().process(channel, msg);
} catch (Throwable ex) {
logger.error("process msg {} error : {}", msg, ex);
logger.error("process msg {} error", msg, ex);
}
}
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册