diff src/org/eclipse/jetty/io/nio/SelectChannelEndPoint.java @ 1002:35d04ac3fd0b

simplify ssl
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 22 Oct 2016 21:56:44 -0600
parents 5ee36654b383
children 3c4c7cc7904f
line wrap: on
line diff
--- a/src/org/eclipse/jetty/io/nio/SelectChannelEndPoint.java	Sat Oct 22 20:56:41 2016 -0600
+++ b/src/org/eclipse/jetty/io/nio/SelectChannelEndPoint.java	Sat Oct 22 21:56:44 2016 -0600
@@ -336,17 +336,20 @@
 			}
 			catch (ClosedChannelException e)
 			{
-				LOG.trace("",e);
+				LOG.warn("",e);
+//				LOG.trace("",e);
 			}
 			catch (EofException e)
 			{
-				LOG.debug("EOF", e);
+				LOG.warn("EOF", e);
+//				LOG.debug("EOF", e);
 				try{close();}
 				catch(IOException e2){LOG.trace("",e2);}
 			}
 			catch (IOException e)
 			{
-				LOG.warn(e.toString());
+				LOG.warn("",e);
+//				LOG.warn(e.toString());
 				try{close();}
 				catch(IOException e2){LOG.trace("",e2);}
 			}