Madan Jampani

Removed exception stack trace for a warning log message

...@@ -71,7 +71,7 @@ public class NettyMessagingService implements MessagingService { ...@@ -71,7 +71,7 @@ public class NettyMessagingService implements MessagingService {
71 clientChannelClass = EpollSocketChannel.class; 71 clientChannelClass = EpollSocketChannel.class;
72 return; 72 return;
73 } catch (Throwable t) { 73 } catch (Throwable t) {
74 - log.warn("Failed to initialize native (epoll) transport. Proceeding with nio.", t); 74 + log.warn("Failed to initialize native (epoll) transport. Reason: {}. Proceeding with nio.", t.getMessage());
75 } 75 }
76 clientGroup = new NioEventLoopGroup(); 76 clientGroup = new NioEventLoopGroup();
77 serverGroup = new NioEventLoopGroup(); 77 serverGroup = new NioEventLoopGroup();
......