Skip to content

Commit b5605f8

Browse files
committed
Remove unnecessary print
1 parent 5615ec2 commit b5605f8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/ua/nanit/limbo/connection/pipeline/ChannelTrafficHandler.java

-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ public void channelRead(@NotNull ChannelHandlerContext ctx, @NotNull Object msg)
2929
ByteBuf in = (ByteBuf) msg;
3030
int bytes = in.readableBytes();
3131

32-
System.out.println(bytes + " bytes");
33-
3432
if (packetSize > 0 && bytes > packetSize) {
3533
closeConnection(ctx, "Closed %s due too large packet size (%d bytes)", ctx.channel().remoteAddress(), bytes);
3634
return;

0 commit comments

Comments
 (0)