【fix】log

This commit is contained in:
wujiawei 2024-09-21 01:34:59 +08:00
parent 9ae7a5715e
commit eda7bb1b44

View File

@ -33,7 +33,7 @@ public class ClientHandleDistributeClientTransferClientTypeAdvanced extends Abst
// 把数据转到真实服务
ByteBuf buf = channel.config().getAllocator().buffer(nettyProxyMsg.getData().length);
buf.writeBytes(nettyProxyMsg.getData());
log.info("client permeate client send request byte:{} to real socket",new String(nettyProxyMsg.getData()));
nextChannel.writeAndFlush(buf);
}