Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -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(); | ... | ... |
-
Please register or login to post a comment