Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2006-01-04 16:44:25 +0000
committerThomas Watson2006-01-04 16:44:25 +0000
commit44299951a0ceca45078788f4edd1d176a23b2b5e (patch)
tree86d0a782fa26145d7d681255dd01a81ffaa8814d
parentf5d8e9e4ab526d04f4df93317ce272103a2ae81e (diff)
downloadrt.equinox.bundles-44299951a0ceca45078788f4edd1d176a23b2b5e.tar.gz
rt.equinox.bundles-44299951a0ceca45078788f4edd1d176a23b2b5e.tar.xz
rt.equinox.bundles-44299951a0ceca45078788f4edd1d176a23b2b5e.zip
give log event dispatcher thread a name.
-rw-r--r--bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/Activator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/Activator.java b/bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/Activator.java
index bfb9c08c8..14824d2e3 100644
--- a/bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/Activator.java
+++ b/bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/Activator.java
@@ -68,7 +68,7 @@ public class Activator implements BundleActivator, EventDispatcher, BundleListen
public void start(BundleContext context) {
this.context = context;
- eventManager = new EventManager();
+ eventManager = new EventManager("Log Event Dispatcher"); //$NON-NLS-1$
logEvent = new EventListeners();
logEntries = new LogEntry[logSize];

Back to the top