Commit a00cdffc authored by Alex Wenckus's avatar Alex Wenckus Committed by alex

Certain situations could cause quite a bit of noise in the log file

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3967 b35dd754-fafc-0310-a699-88a17e54d16e
parent 18481e80
......@@ -93,9 +93,14 @@ public class ProxyConnectionManager {
socket = serverSocket.accept();
}
catch (IOException e) {
Log.error("Error accepting procy connection", e);
if(!serverSocket.isClosed()) {
Log.error("Error accepting proxy connection", e);
continue;
}
else {
break;
}
}
executor.submit(new Runnable() {
public void run() {
try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment