diff src/org/eclipse/jetty/server/nio/BlockingChannelConnector.java @ 1005:0e96ce3db20a

remove HttpBuffers
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 23 Oct 2016 02:42:05 -0600
parents 3fa54d9d19cd
children 2b769da7f67d
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/nio/BlockingChannelConnector.java	Sat Oct 22 23:00:57 2016 -0600
+++ b/src/org/eclipse/jetty/server/nio/BlockingChannelConnector.java	Sun Oct 23 02:42:05 2016 -0600
@@ -211,13 +211,15 @@
 			}
 			catch (EofException e)
 			{
-				LOG.debug("EOF", e);
-				try{BlockingChannelEndPoint.this.close();}
+				LOG.warn("EOF", e);
+//				LOG.debug("EOF", e);
+				try{close();}
 				catch(IOException e2){LOG.trace("",e2);}
 			}
 			catch (HttpException e)
 			{
-				LOG.debug("BAD", e);
+				LOG.warn("BAD", e);
+//				LOG.debug("BAD", e);
 				try{close();}
 				catch(IOException e2){LOG.trace("",e2);}
 			}