aboutsummaryrefslogtreecommitdiff
path: root/src/SelfIvyClient.java
diff options
context:
space:
mode:
authorjestin2012-04-27 08:55:56 +0000
committerjestin2012-04-27 08:55:56 +0000
commit6fbefad24ec7e8783365db61b03357d50ee0dd56 (patch)
treecf6433a80330d03095b4664af121db5461c99306 /src/SelfIvyClient.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/SelfIvyClient.java')
-rw-r--r--src/SelfIvyClient.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SelfIvyClient.java b/src/SelfIvyClient.java
index 2cfc016..1957124 100644
--- a/src/SelfIvyClient.java
+++ b/src/SelfIvyClient.java
@@ -191,6 +191,7 @@ public class SelfIvyClient extends IvyClient {
args=a;
t=new Thread(Runner.this);
bus.registerThread(t);
+ t.setName("Ivy Runner Thread to execute an async callback");
t.start();
bus.unRegisterThread(t);
}