[FIX] Смена логгирования с DEBUG на DEV при подключении клиента

This commit is contained in:
Gravit 2019-05-07 18:48:09 +07:00
parent 9e82dabf40
commit d33909af1f

View file

@ -29,7 +29,7 @@ public void setClient(Client client)
@Override
public void channelActive(ChannelHandlerContext ctx) {
LogHelper.debug("New client %s", IOHelper.getIP(ctx.channel().remoteAddress()));
LogHelper.dev("New client %s", IOHelper.getIP(ctx.channel().remoteAddress()));
client = new Client(0);
service.registerClient(ctx.channel());
ctx.executor().schedule(() -> {