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:
hns 2002-09-04 14:03:48 +00:00
parent 5b0d8935e8
commit 67b6d434f3

View file

@ -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");
} }
} }