Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2006-05-01 15:38:43 +0000
committerThomas Watson2006-05-01 15:38:43 +0000
commit22ecd796bbc339f3261286d12d04c9f0927613ca (patch)
tree625893c8279f7ed70c7e20fc2ed16ae5c8bab35f /bundles/org.eclipse.osgi/.options
parent1663c84c8e64f67f661e2641b049db5d228e6ff9 (diff)
downloadrt.equinox.framework-22ecd796bbc339f3261286d12d04c9f0927613ca.tar.gz
rt.equinox.framework-22ecd796bbc339f3261286d12d04c9f0927613ca.tar.xz
rt.equinox.framework-22ecd796bbc339f3261286d12d04c9f0927613ca.zip
Bug 137993 [doc] org.eclipse.osgi/.options poorly documented
Diffstat (limited to 'bundles/org.eclipse.osgi/.options')
-rw-r--r--bundles/org.eclipse.osgi/.options24
1 files changed, 17 insertions, 7 deletions
diff --git a/bundles/org.eclipse.osgi/.options b/bundles/org.eclipse.osgi/.options
index 199d39fa4..6088ce1f6 100644
--- a/bundles/org.eclipse.osgi/.options
+++ b/bundles/org.eclipse.osgi/.options
@@ -2,20 +2,22 @@
# Turn on general debugging for org.eclipse.osgi
org.eclipse.osgi/debug=false
-
+# Prints out class loading debug information
org.eclipse.osgi/debug/loader=false
+# Prints out event (FrameworkEvent/BundleEvent/ServiceEvent) and listener debug information
org.eclipse.osgi/debug/events=false
+# Prints out OSGi service debug information (registration/getting/ungetting etc.)
org.eclipse.osgi/debug/services=false
-org.eclipse.osgi/debug/packages=false
+# Prints out bundle manifest parsing debug information
org.eclipse.osgi/debug/manifest=false
+# Prints out LDAP filter debug information
org.eclipse.osgi/debug/filter=false
+# Prints out security (PermissionAdmin service) debug information
org.eclipse.osgi/debug/security=false
+# Prints out start level service debug information
org.eclipse.osgi/debug/startlevel=false
+# Prints out package admin service debug information
org.eclipse.osgi/debug/packageadmin=false
-org.eclipse.osgi/debug/packageadmin/timing=false
-org.eclipse.osgi/debug/monitorbundles=false
-org.eclipse.osgi/debug/bundleTime=false
-
# Debug the loading of message bundles
org.eclipse.osgi/debug/messageBundles=false
@@ -26,13 +28,20 @@ org.eclipse.osgi/eclipseadaptor/debug/platformadmin=false
org.eclipse.osgi/eclipseadaptor/debug/platformadmin/resolver=false
org.eclipse.osgi/eclipseadaptor/converter/debug = false
-# OSGi resolver options
+### OSGi resolver options
+# Turns on debugging for the resolver
org.eclipse.osgi/resolver/debug = false
+# Prints out wiring information after the resolver has completed the resolve process
org.eclipse.osgi/resolver/wiring = false
+# Prints out Import-Package information
org.eclipse.osgi/resolver/imports = false
+# Prints out Require-Bundle information
org.eclipse.osgi/resolver/requires = false
+# Prints out package grouping information form the "uses" clause
org.eclipse.osgi/resolver/grouping = false
+# Prints out cycle information
org.eclipse.osgi/resolver/cycles = false
+# Prints out Eclipse-GenericRequire information
org.eclipse.osgi/resolver/generics = false
#### Profile settings
@@ -59,6 +68,7 @@ org.eclipse.osgi/defaultprofile/buffersize = 256
org.eclipse.osgi/monitor/classes=false
# monitor bundle activation
+org.eclipse.osgi/debug/monitorbundles=false
org.eclipse.osgi/monitor/activation=false
# monitor resource bundle (*.properties) loading

Back to the top