LOG.info("connection accepted from " + clientSocket.getInetAddress());
InputStream inputStream = clientSocket.getInputStream();
OutputStream outputStream = clientSocket.getOutputStream();
if (isDebugging()) {
inputStream = new ProfilingInputStream(inputStream);
outputStream = new ProfilingOutputStream(outputStream);
}
final ServerConnection connection = createServerConnection(inputStream, outputStream, sd);
// spawnConnectionThread(connection, sd);