Unverified Commit f4897b56 authored by tswstarplanet's avatar tswstarplanet Committed by GitHub
Browse files

fix blocker problem (#2244)

* fix blocker problem

* use error level to log exception
parent 07149714
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }
+1 −1
Original line number Diff line number Diff line
@@ -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);
                    }
                }
            };