Avoid unnecessary log messages.

This commit is contained in:
hns 2003-11-28 18:00:59 +00:00
parent 48ed72b6b4
commit b1fc070efc

View file

@ -820,8 +820,6 @@ public final class RequestEvaluator implements Runnable {
* notify. * notify.
*/ */
public synchronized void stopThread() { public synchronized void stopThread() {
app.logEvent("Stopping Thread " + rtx);
Transactor t = rtx; Transactor t = rtx;
// let the scripting engine know that the // let the scripting engine know that the
@ -834,6 +832,7 @@ public final class RequestEvaluator implements Runnable {
if (t != null) { if (t != null) {
if (reqtype != NONE) { if (reqtype != NONE) {
app.logEvent("Killing Thread " + t);
reqtype = NONE; reqtype = NONE;
t.kill(); t.kill();