Log abort messages to the access log instead of the event log to give a
better idea about request activity and the ratio between successful/aborted requests.
This commit is contained in:
parent
5b0d8935e8
commit
67b6d434f3
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ public class Transactor extends Thread {
|
||||||
nmgr.db.abortTransaction (txn);
|
nmgr.db.abortTransaction (txn);
|
||||||
txn = null;
|
txn = null;
|
||||||
}
|
}
|
||||||
nmgr.app.logEvent (tname+" aborted after "+(System.currentTimeMillis()-tstart)+" millis");
|
nmgr.app.logAccess (tname+" aborted after "+(System.currentTimeMillis()-tstart)+" millis");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue