Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2019-04-12 13:41:17 +0000
committerThomas Watson2019-04-12 14:08:19 +0000
commitada4d36bb6ca0c208881a0c1d528fa3f4cb03bcc (patch)
treee679db600046fbe5b9af29e674f66418618cd73f /bundles/org.eclipse.osgi/.options
parent2e8fc7a7f648e3ad325e55863aca098c8e108db6 (diff)
downloadrt.equinox.framework-ada4d36bb6ca0c208881a0c1d528fa3f4cb03bcc.tar.gz
rt.equinox.framework-ada4d36bb6ca0c208881a0c1d528fa3f4cb03bcc.tar.xz
rt.equinox.framework-ada4d36bb6ca0c208881a0c1d528fa3f4cb03bcc.zip
This new option not only records the time to load and call BundleActivator.start but also the complete time to start a bundle including resolving and firing bundle events Change-Id: I70bc48ca3bfbe08d33a159d7add0164df8bcfa76 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.osgi/.options')
-rw-r--r--bundles/org.eclipse.osgi/.options6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/.options b/bundles/org.eclipse.osgi/.options
index 13b000fcb..8e606f05f 100644
--- a/bundles/org.eclipse.osgi/.options
+++ b/bundles/org.eclipse.osgi/.options
@@ -20,8 +20,12 @@ org.eclipse.osgi/debug/security=false
org.eclipse.osgi/debug/startlevel=false
# Prints out package admin service debug information
org.eclipse.osgi/debug/packageadmin=false
-# Prints out timing information for bundle activation
+# Prints out timing information for loading and calling BundleActivator.start
org.eclipse.osgi/debug/bundleTime=false
+# Prints out total time for starting a bundle which includes:
+# - loading and calling BundleActivator.start
+# - other time spent resolving bundles and firing bundle events to listeners
+org.eclipse.osgi/debug/bundleStartTime=false
# Debug the loading of message bundles
org.eclipse.osgi/debug/messageBundles=false
# Debug the object pool additions

Back to the top