From b1fc070efcd3df23345ff7b22e5c3173facccda7 Mon Sep 17 00:00:00 2001 From: hns Date: Fri, 28 Nov 2003 18:00:59 +0000 Subject: [PATCH] Avoid unnecessary log messages. --- src/helma/framework/core/RequestEvaluator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/helma/framework/core/RequestEvaluator.java b/src/helma/framework/core/RequestEvaluator.java index 526bc01c..425ee950 100644 --- a/src/helma/framework/core/RequestEvaluator.java +++ b/src/helma/framework/core/RequestEvaluator.java @@ -820,8 +820,6 @@ public final class RequestEvaluator implements Runnable { * notify. */ public synchronized void stopThread() { - app.logEvent("Stopping Thread " + rtx); - Transactor t = rtx; // let the scripting engine know that the @@ -834,6 +832,7 @@ public final class RequestEvaluator implements Runnable { if (t != null) { if (reqtype != NONE) { + app.logEvent("Killing Thread " + t); reqtype = NONE; t.kill();