From 58a109b72721de5d71f6b4c808327e475d2f3494 Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 7 Sep 2005 08:42:20 +0000 Subject: [PATCH] * Do not log concurrency conflicts. This is often misinterpreted as error which it is not. --- src/helma/objectmodel/db/Node.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/objectmodel/db/Node.java b/src/helma/objectmodel/db/Node.java index cbb56449..860d7975 100644 --- a/src/helma/objectmodel/db/Node.java +++ b/src/helma/objectmodel/db/Node.java @@ -262,7 +262,7 @@ public final class Node implements INode, Serializable { } if ((lock != null) && (lock != current) && lock.isAlive() && lock.isActive()) { - nmgr.logEvent("Concurrency conflict for " + this + ", lock held by " + lock); + // nmgr.logEvent("Concurrency conflict for " + this + ", lock held by " + lock); throw new ConcurrencyException("Tried to modify " + this + " from two threads at the same time."); }