Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Porhel2016-05-03 08:27:28 +0000
committerEike Stepper2016-05-15 09:39:49 +0000
commit58f6a094852b80c6175603a2b482569db79fd410 (patch)
treef612d95c5c36ebdd4d3c9430481f64dcd41272cf /plugins/org.eclipse.net4j.util
parentccbba3587c75c9fc0e61576926fe44b6767c8523 (diff)
downloadcdo-58f6a094852b80c6175603a2b482569db79fd410.tar.gz
cdo-58f6a094852b80c6175603a2b482569db79fd410.tar.xz
cdo-58f6a094852b80c6175603a2b482569db79fd410.zip
[467174] Add information in the unlock trace to be consistent with lock.
Change-Id: I3f57d2bfdcdcd89e58b84ab00211af098d990142 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=467174 Signed-off-by: Maxime Porhel <maxime.porhel@obeo.fr>
Diffstat (limited to 'plugins/org.eclipse.net4j.util')
-rw-r--r--plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/RWOLockManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/RWOLockManager.java b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/RWOLockManager.java
index 1140b9aedc..437445d636 100644
--- a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/RWOLockManager.java
+++ b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/concurrent/RWOLockManager.java
@@ -121,7 +121,7 @@ public class RWOLockManager<OBJECT, CONTEXT> extends Lifecycle implements IRWOLo
if (TRACER.isEnabled())
{
- TRACER.format("Unlock", objectsToUnlock, context); //$NON-NLS-1$
+ TRACER.format("Unlock : {0} --> {1}", objectsToUnlock, context); //$NON-NLS-1$
}
Set<LockState<OBJECT, CONTEXT>> lockStates = new HashSet<LockState<OBJECT, CONTEXT>>();

Back to the top