Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSusan Franklin2010-04-24 20:13:57 +0000
committerSusan Franklin2010-04-24 20:13:57 +0000
commit2e0058c3316e03fb7d10d0cf037399d91b77ad1a (patch)
tree450acb7502d64b56a0fa083a4cafc2845f5889bc /bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox
parentbcde189cc17726636e028561c235fdad914ce74e (diff)
downloadrt.equinox.p2-2e0058c3316e03fb7d10d0cf037399d91b77ad1a.tar.gz
rt.equinox.p2-2e0058c3316e03fb7d10d0cf037399d91b77ad1a.tar.xz
rt.equinox.p2-2e0058c3316e03fb7d10d0cf037399d91b77ad1a.zip
Bug 300860 - [ui] Support event tracing
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox')
-rw-r--r--bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/internal/p2/core/helpers/Tracing.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/internal/p2/core/helpers/Tracing.java b/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/internal/p2/core/helpers/Tracing.java
index ca929c56e..b7fb78d38 100644
--- a/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/internal/p2/core/helpers/Tracing.java
+++ b/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/internal/p2/core/helpers/Tracing.java
@@ -35,12 +35,14 @@ public class Tracing {
public static boolean DEBUG_RECONCILER = false;
public static boolean DEBUG_REMOVE_REPO = false;
public static boolean DEBUG_UPDATE_CHECK = false;
+ public static boolean DEBUG_EVENTS_CLIENT = false;
static {
DebugOptions options = (DebugOptions) ServiceHelper.getService(Activator.context, DebugOptions.class.getName());
if (options != null) {
DEBUG = options.getBooleanOption(Activator.ID + "/debug", false); //$NON-NLS-1$
if (DEBUG) {
+ DEBUG_EVENTS_CLIENT = options.getBooleanOption(Activator.ID + "/events/client", false); //$NON-NLS-1$
DEBUG_GENERATOR_PARSING = options.getBooleanOption(Activator.ID + "/generator/parsing", false); //$NON-NLS-1$
DEBUG_INSTALL_REGISTRY = options.getBooleanOption(Activator.ID + "/engine/installregistry", false); //$NON-NLS-1$
DEBUG_METADATA_PARSING = options.getBooleanOption(Activator.ID + "/metadata/parsing", false); //$NON-NLS-1$

Back to the top