【fix】

This commit is contained in:
bug-fix
2024-10-31 19:10:44 +08:00
parent 240de53888
commit 810579178f
2 changed files with 2 additions and 2 deletions

View File

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