KeepMeAlive should not stop on uncatched exception

This commit is contained in:
Laurent Clouet
2017-04-19 22:09:59 +02:00
parent 6a2cc2b8a6
commit 4486a95662

View File

@@ -172,7 +172,6 @@ public class Server extends Thread implements HostnameVerifier, X509TrustManager
PrintWriter pw = new PrintWriter(sw); PrintWriter pw = new PrintWriter(sw);
e.printStackTrace(pw); e.printStackTrace(pw);
this.log.debug("Server::stayAlive Exception " + e + " stacktrace: " + sw.toString()); this.log.debug("Server::stayAlive Exception " + e + " stacktrace: " + sw.toString());
return;
} }
} }
} }