From 67b6d434f3019e8c5d142c8197e14d72364a5600 Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 4 Sep 2002 14:03:48 +0000 Subject: [PATCH] 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. --- src/helma/objectmodel/db/Transactor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/objectmodel/db/Transactor.java b/src/helma/objectmodel/db/Transactor.java index a4ea136d..3ff23205 100644 --- a/src/helma/objectmodel/db/Transactor.java +++ b/src/helma/objectmodel/db/Transactor.java @@ -205,7 +205,7 @@ public class Transactor extends Thread { nmgr.db.abortTransaction (txn); txn = null; } - nmgr.app.logEvent (tname+" aborted after "+(System.currentTimeMillis()-tstart)+" millis"); + nmgr.app.logAccess (tname+" aborted after "+(System.currentTimeMillis()-tstart)+" millis"); } }