aboutsummaryrefslogtreecommitdiff
path: root/src/Probe.java
diff options
context:
space:
mode:
authorjestin2012-04-27 08:55:56 +0000
committerjestin2012-04-27 08:55:56 +0000
commit6fbefad24ec7e8783365db61b03357d50ee0dd56 (patch)
treecf6433a80330d03095b4664af121db5461c99306 /src/Probe.java
parent0617ac556d840cb313f93bbb36ec61677a7cc191 (diff)
downloadivy-java-6fbefad24ec7e8783365db61b03357d50ee0dd56.zip
ivy-java-6fbefad24ec7e8783365db61b03357d50ee0dd56.tar.gz
ivy-java-6fbefad24ec7e8783365db61b03357d50ee0dd56.tar.bz2
ivy-java-6fbefad24ec7e8783365db61b03357d50ee0dd56.tar.xz
added names to the threads, in order to allow jvisualvm debug
removed a "My DEBUG" message on the console
Diffstat (limited to 'src/Probe.java')
-rw-r--r--src/Probe.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Probe.java b/src/Probe.java
index c8021c5..6a4c75c 100644
--- a/src/Probe.java
+++ b/src/Probe.java
@@ -177,6 +177,7 @@ public class Probe implements IvyApplicationListener, IvyMessageListener, IvyBin
this.bus=bus;
bus.addApplicationListener(this);
looperThread=new Thread(this);
+ looperThread.setName("Ivy Probe looper thread on readline");
looperThread.start();
}