Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2012-02-22 21:18:52 +0000
committerJohn Arthorne2012-02-22 21:19:35 +0000
commit024cf11de5e534bc53589a5450ede656cd2704ce (patch)
tree38a675b43f0f5406151daee69e37a0504f33767e /bundles/org.eclipse.equinox.p2.core
parentb6e303672b8fdafc5035df293837c4b266d9c789 (diff)
downloadrt.equinox.p2-024cf11de5e534bc53589a5450ede656cd2704ce.tar.gz
rt.equinox.p2-024cf11de5e534bc53589a5450ede656cd2704ce.tar.xz
rt.equinox.p2-024cf11de5e534bc53589a5450ede656cd2704ce.zip
Bug 372289 - Enable activating projector encoding debugging in .optionsv20120222-2119
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.core')
-rw-r--r--bundles/org.eclipse.equinox.p2.core/.options3
-rw-r--r--bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/internal/p2/core/helpers/Tracing.java2
2 files changed, 5 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.core/.options b/bundles/org.eclipse.equinox.p2.core/.options
index 7024adaa4..4607d6536 100644
--- a/bundles/org.eclipse.equinox.p2.core/.options
+++ b/bundles/org.eclipse.equinox.p2.core/.options
@@ -31,6 +31,9 @@ org.eclipse.equinox.p2.core/planner/operands=false
#Detailed debugging information about the projector
org.eclipse.equinox.p2.core/planner/projector=false
+#Detailed debugging information about the projector encoding
+org.eclipse.equinox.p2.core/planner/encoding=false
+
#Detailed debugging information about the reconciler
org.eclipse.equinox.p2.core/reconciler=false
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 952e425a7..b5886a25e 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
@@ -30,6 +30,7 @@ public class Tracing {
public static boolean DEBUG_PARSE_PROBLEMS = false;
public static boolean DEBUG_PLANNER_OPERANDS = false;
public static boolean DEBUG_PLANNER_PROJECTOR = false;
+ public static boolean DEBUG_PLANNER_PROJECTOR_ENCODING = false;
public static boolean DEBUG_PROFILE_PREFERENCES = false;
public static boolean DEBUG_PUBLISHING = false;
public static boolean DEBUG_RECONCILER = false;
@@ -51,6 +52,7 @@ public class Tracing {
DEBUG_PARSE_PROBLEMS = options.getBooleanOption(Activator.ID + "/core/parseproblems", false); //$NON-NLS-1$
DEBUG_PLANNER_OPERANDS = options.getBooleanOption(Activator.ID + "/planner/operands", false); //$NON-NLS-1$
DEBUG_PLANNER_PROJECTOR = options.getBooleanOption(Activator.ID + "/planner/projector", false); //$NON-NLS-1$
+ DEBUG_PLANNER_PROJECTOR_ENCODING = options.getBooleanOption(Activator.ID + "/planner/encoding", false); //$NON-NLS-1$
DEBUG_PROFILE_PREFERENCES = options.getBooleanOption(Activator.ID + "/engine/profilepreferences", false); //$NON-NLS-1$
DEBUG_PUBLISHING = options.getBooleanOption(Activator.ID + "/publisher", false); //$NON-NLS-1$
DEBUG_RECONCILER = options.getBooleanOption(Activator.ID + "/reconciler", false); //$NON-NLS-1$

Back to the top