Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2008-12-04 20:19:15 +0000
committerDJ Houghton2008-12-04 20:19:15 +0000
commitdcf5f279d8ac728ee56c88189d5a02e99fe564c1 (patch)
treef577d8ca4a986b30e188e9512eeeb3d242346866 /bundles/org.eclipse.equinox.p2.core
parente4510d3226597195ddb14bbc327fa2217ac69fe5 (diff)
downloadrt.equinox.p2-dcf5f279d8ac728ee56c88189d5a02e99fe564c1.tar.gz
rt.equinox.p2-dcf5f279d8ac728ee56c88189d5a02e99fe564c1.tar.xz
rt.equinox.p2-dcf5f279d8ac728ee56c88189d5a02e99fe564c1.zip
Bug 257602 - [reconciler] Add debug information when constructing the profile change request
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.core')
-rw-r--r--bundles/org.eclipse.equinox.p2.core/.options7
-rw-r--r--bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/internal/p2/core/helpers/Tracing.java2
2 files changed, 7 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.core/.options b/bundles/org.eclipse.equinox.p2.core/.options
index e10aa0ae9..4a44da46e 100644
--- a/bundles/org.eclipse.equinox.p2.core/.options
+++ b/bundles/org.eclipse.equinox.p2.core/.options
@@ -25,5 +25,8 @@ org.eclipse.equinox.p2.core/updatechecker=false
#Detailed debugging information about the operands being generated
org.eclipse.equinox.p2.core/planner/operands=false
-#Detailde debugging information about the projector
-org.eclipse.equinox.p2.core/planner/projector=false \ No newline at end of file
+#Detailed debugging information about the projector
+org.eclipse.equinox.p2.core/planner/projector=false
+
+#Detailed debugging information about the reconciler
+org.eclipse.equinox.p2.core/reconciler=false \ No newline at end of file
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 464739644..986cb1857 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
@@ -32,6 +32,7 @@ public class Tracing {
public static boolean DEBUG_UPDATE_CHECK = false;
public static boolean DEBUG_PLANNER_OPERANDS = false;
public static boolean DEBUG_PLANNER_PROJECTOR = false;
+ public static boolean DEBUG_RECONCILER = false;
static {
DebugOptions options = (DebugOptions) ServiceHelper.getService(Activator.context, DebugOptions.class.getName());
@@ -47,6 +48,7 @@ public class Tracing {
DEBUG_UPDATE_CHECK = options.getBooleanOption(Activator.ID + "/updatechecker", 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_RECONCILER = options.getBooleanOption(Activator.ID + "/reconciler", false); //$NON-NLS-1$
}
}
}

Back to the top