From fde3b335db70b419cbfa72c7d4463113ad0d8c75 Mon Sep 17 00:00:00 2001 From: hns Date: Thu, 24 Mar 2005 22:02:21 +0000 Subject: [PATCH] No need to dump stack, logError does that for us (leads to multiple stack traces). --- src/helma/framework/core/RequestEvaluator.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/helma/framework/core/RequestEvaluator.java b/src/helma/framework/core/RequestEvaluator.java index 636a9b27..35e26f3b 100644 --- a/src/helma/framework/core/RequestEvaluator.java +++ b/src/helma/framework/core/RequestEvaluator.java @@ -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();