aboutsummaryrefslogtreecommitdiff
path: root/src/Ivy.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ivy.java')
-rwxr-xr-xsrc/Ivy.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Ivy.java b/src/Ivy.java
index 5e149ec..5c11066 100755
--- a/src/Ivy.java
+++ b/src/Ivy.java
@@ -60,7 +60,7 @@ public class Ivy implements Runnable {
* the library version, useful for development purposes only, when java is
* invoked with -DIVY_DEBUG
*/
- public static final String libVersion ="1.2.1";
+ public static final String libVersion ="1.2.2";
private boolean debug;
private static int serial=0; /* an unique ID for each regexp */
@@ -431,6 +431,7 @@ public class Ivy implements Runnable {
* the service socket thread reader main loop
*/
public void run() {
+ // System.out.println("Ivy service Thread started"); // THREADDEBUG
Thread thisThread=Thread.currentThread();
while(thisThread==serverThread){
try {
@@ -447,6 +448,7 @@ public class Ivy implements Runnable {
}
}
traceDebug("stopping the server Thread");
+ // System.out.println("Ivy service Thread stopped"); // THREADDEBUG
}