JETTY-838 Dont log and throw

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@767 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2009-08-26 12:09:55 +00:00
parent 28cbed4144
commit b5f1426c48
1 changed files with 1 additions and 2 deletions

View File

@ -77,8 +77,7 @@ public class Holder extends AbstractLifeCycle
}
catch (Exception e)
{
Log.warn(e.toString());
Log.debug(e);
Log.warn(e);
throw new UnavailableException(e.getMessage(), -1);
}
}