diff --git a/jetty-io/src/main/java/org/eclipse/jetty/io/ChannelEndPoint.java b/jetty-io/src/main/java/org/eclipse/jetty/io/ChannelEndPoint.java index c42f8db9736..6c2cfb75480 100644 --- a/jetty-io/src/main/java/org/eclipse/jetty/io/ChannelEndPoint.java +++ b/jetty-io/src/main/java/org/eclipse/jetty/io/ChannelEndPoint.java @@ -127,12 +127,13 @@ public class ChannelEndPoint extends AbstractEndPoint try { int filled = _channel.read(buffer); + LOG.debug("filled {} {}", filled, this); if (filled>0) notIdle(); else if (filled==-1) shutdownInput(); - + return filled; } catch(IOException e) @@ -171,6 +172,7 @@ public class ChannelEndPoint extends AbstractEndPoint } } } + LOG.debug("flushed {} {}", flushed, this); } catch (ClosedChannelException | EOFException | SocketException e) {