less verbose

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@847 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2009-09-09 02:40:47 +00:00
parent 002518bd48
commit ffa43e89a9
2 changed files with 7 additions and 1 deletions

View File

@ -551,16 +551,18 @@ public class HttpConnection implements Connection
} }
catch (ContinuationThrowable e) catch (ContinuationThrowable e)
{ {
Log.debug(e); Log.ignore(e);
} }
catch (EofException e) catch (EofException e)
{ {
Log.debug(e); Log.debug(e);
_request.setHandled(true);
error=true; error=true;
} }
catch (RuntimeIOException e) catch (RuntimeIOException e)
{ {
Log.debug(e); Log.debug(e);
_request.setHandled(true);
error=true; error=true;
} }
catch (HttpException e) catch (HttpException e)

View File

@ -440,6 +440,10 @@ public class ServletHandler extends ScopedHandler
{ {
throw e; throw e;
} }
catch(RuntimeIOException e)
{
throw e;
}
catch(ContinuationThrowable e) catch(ContinuationThrowable e)
{ {
throw e; throw e;