Rolled back temporary log statements.

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3240 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Simone Bordet 2011-05-23 18:04:44 +00:00
parent f166c40a6d
commit eca44d8983
1 changed files with 0 additions and 7 deletions

View File

@ -683,10 +683,7 @@ public class SslSelectChannelEndPoint extends SelectChannelEndPoint
int filled=super.fill(_inNIOBuffer);
if (_debug) __log.debug(_session+" unwrap filled "+filled);
if (filled < 0)
{
__log.info("{} fill() returned -1, _inNIOBuffer {}", _socket, _inNIOBuffer); // TODO: remove this
remoteClosed = true;
}
// break the loop if no progress is made (we have read everything there is to read)
if (filled<=0)
break;
@ -732,13 +729,9 @@ public class SslSelectChannelEndPoint extends SelectChannelEndPoint
freeOutBuffer();
throw new EofException();
}
__log.info("{} uwrap() returning false, _inNIOBuffer {}", _socket, _inNIOBuffer); // TODO: remove this
return false;
}
if (remoteClosed)
__log.info("{} uwrapping, _inNIOBuffer {}", _socket, _inNIOBuffer); // TODO: remove this
// We have some in data, so try to unwrap it.
try
{