[FIX] Исправление граматики

This commit is contained in:
xDark 2019-08-13 22:16:57 +03:00
parent 0524e77e3e
commit 2a975d749c

View file

@ -40,7 +40,7 @@ public LauncherNettyServer(LaunchServer server) {
} }
if(config.performance.usingEpoll && !Epoll.isAvailable()) if(config.performance.usingEpoll && !Epoll.isAvailable())
{ {
LogHelper.error("netty,perfomance.usingEpoll is not available: ", Epoll.unavailabilityCause()); LogHelper.error("Epoll is not available: (netty,perfomance.usingEpoll configured wrongly)", Epoll.unavailabilityCause());
} }
bossGroup = NettyObjectFactory.newEventLoopGroup(config.performance.bossThread); bossGroup = NettyObjectFactory.newEventLoopGroup(config.performance.bossThread);
workerGroup = NettyObjectFactory.newEventLoopGroup(config.performance.workerThread); workerGroup = NettyObjectFactory.newEventLoopGroup(config.performance.workerThread);