diff options
author | jestin | 2012-04-27 08:55:56 +0000 |
---|---|---|
committer | jestin | 2012-04-27 08:55:56 +0000 |
commit | 6fbefad24ec7e8783365db61b03357d50ee0dd56 (patch) | |
tree | cf6433a80330d03095b4664af121db5461c99306 /src/IvyDaemon.java | |
parent | 0617ac556d840cb313f93bbb36ec61677a7cc191 (diff) | |
download | ivy-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/IvyDaemon.java')
-rw-r--r-- | src/IvyDaemon.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/IvyDaemon.java b/src/IvyDaemon.java index 3ec54e6..2c0e42a 100644 --- a/src/IvyDaemon.java +++ b/src/IvyDaemon.java @@ -95,6 +95,7 @@ public class IvyDaemon implements Runnable { this.bus=bus; serviceSocket = new ServerSocket(servicePort) ; clientThread=new Thread(this); + clientThread.setName("Ivy client thread set by Daemon ?! "); } protected void doStart() { |