Better error messages when web-buindles fail to start cleanly.

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3393 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Hugues Malphettes 2011-06-17 04:14:55 +00:00
parent 8d18642311
commit 1b2189a488
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ public class WebBundleTrackerCustomizer implements BundleTrackerCustomizer {
}
catch (Throwable e)
{
Log.warn("Staring the web-bundle " + bundle.getSymbolicName() + " threw an exception.", e);
Log.warn("Starting the web-bundle " + bundle.getSymbolicName() + " threw an exception.", e);
return true;//maybe it did not work maybe it did. safer to track this bundle.
}
}