* Use logError() for exceptions caught from onStart() so that a stack trace is generated.

This commit is contained in:
hns 2005-11-09 15:35:30 +00:00
parent 613344a006
commit d18ae12d12

View file

@ -1432,7 +1432,7 @@ public final class Application implements IPathElement, Runnable {
eval = getEvaluator();
eval.invokeInternal(null, "onStart", new Object[0]);
} catch (Exception xcept) {
logEvent("Error in " + name + "/onStart(): " + xcept);
logError("Error in " + name + "/onStart()", xcept);
} finally {
releaseEvaluator(eval);
}