No need to dump stack, logError does that for us (leads to multiple stack traces).

This commit is contained in:
hns 2005-03-24 22:02:21 +00:00
parent 0856559870
commit fde3b335db

View file

@ -519,11 +519,6 @@ public final class RequestEvaluator implements Runnable {
app.errorCount += 1;
app.logError("Error in " + Thread.currentThread(), x);
// Dump stack trace to System.err in debug mode
if (app.debug) {
x.printStackTrace();
}
// set done to false so that the error will be processed
done = false;
error = x.getMessage();