Avoid unnecessary log messages.
This commit is contained in:
parent
48ed72b6b4
commit
b1fc070efc
1 changed files with 1 additions and 2 deletions
|
@ -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();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue