Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-02-08 09:41:22 +0000
committerLars Vogel2019-02-08 12:48:05 +0000
commitc6f5cbfa16d4e92687cc775fd03d934142aa16ef (patch)
tree1c3ec87d3d3d82891c9e39ad61d6ca55586537e3
parent09444c9c0cc8aab261443342da69f9e44aa5cb2c (diff)
downloadrt.equinox.framework-c6f5cbfa16d4e92687cc775fd03d934142aa16ef.tar.gz
rt.equinox.framework-c6f5cbfa16d4e92687cc775fd03d934142aa16ef.tar.xz
rt.equinox.framework-c6f5cbfa16d4e92687cc775fd03d934142aa16ef.zip
Adding the time unit to the Application start debug output
Change-Id: I11af8360d1d6562fdf79ae2d185b0d7ecf10097a Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/DefaultStartupMonitor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/DefaultStartupMonitor.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/DefaultStartupMonitor.java
index 3b5d21735..4f6132358 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/DefaultStartupMonitor.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/DefaultStartupMonitor.java
@@ -65,7 +65,7 @@ public class DefaultStartupMonitor implements StartupMonitor {
if (EclipseStarter.debug) {
String timeString = equinoxConfig.getConfiguration("eclipse.startTime"); //$NON-NLS-1$
long time = timeString == null ? 0L : Long.parseLong(timeString);
- Debug.println("Application Started: " + (System.currentTimeMillis() - time)); //$NON-NLS-1$
+ Debug.println("Application started in : " + (System.currentTimeMillis() - time) + "ms"); //$NON-NLS-1$ //$NON-NLS-2$
}
splashHandler.run();
}

Back to the top