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,8 +93,13 @@ public class ProxyConnectionManager { ...@@ -93,8 +93,13 @@ public class ProxyConnectionManager {
socket = serverSocket.accept(); socket = serverSocket.accept();
} }
catch (IOException e) { catch (IOException e) {
Log.error("Error accepting procy connection", e); if(!serverSocket.isClosed()) {
continue; Log.error("Error accepting proxy connection", e);
continue;
}
else {
break;
}
} }
executor.submit(new Runnable() { executor.submit(new Runnable() {
public void run() { public void run() {
......
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