Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2007-12-15 08:34:47 +0000
committerEike Stepper2007-12-15 08:34:47 +0000
commita12a51bb96fb2ebed5996aa6661a9647744c995b (patch)
tree638a865d05eb0eedbc4cfe7323229912cb8cc091 /plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle
parent0fbb634e5b04a79035322b391291e979af4cf20b (diff)
downloadcdo-a12a51bb96fb2ebed5996aa6661a9647744c995b.tar.gz
cdo-a12a51bb96fb2ebed5996aa6661a9647744c995b.tar.xz
cdo-a12a51bb96fb2ebed5996aa6661a9647744c995b.zip
[213084] Provide performance logging
https://bugs.eclipse.org/bugs/show_bug.cgi?id=213084
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/OM.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/OM.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/OM.java
index f40a8604af..3bd2a1f026 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/OM.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/OM.java
@@ -51,6 +51,12 @@ public abstract class OM
public static final OMTracer DEBUG_REVISION = DEBUG.tracer("revision"); //$NON-NLS-1$
+ public static final OMTracer PERF = BUNDLE.tracer("perf"); //$NON-NLS-1$
+
+ public static final OMTracer PERF_REVISION = PERF.tracer("revision"); //$NON-NLS-1$
+
+ public static final OMTracer PERF_REVISION_LOADING = PERF_REVISION.tracer("loading"); //$NON-NLS-1$
+
public static final OMLogger LOG = BUNDLE.logger();
public static final OMPreferences PREFS = BUNDLE.preferences();

Back to the top