--- projects/cms/source/server/uk/org/iscream/cms/server/filter/TCPReader.java 2001/01/28 05:34:38 1.8 +++ projects/cms/source/server/uk/org/iscream/cms/server/filter/TCPReader.java 2001/02/01 00:18:42 1.9 @@ -17,7 +17,7 @@ import uk.ac.ukc.iscream.util.*; * Reads TCP Heartbeats from the host applications. * * @author $Author: tdb $ - * @version $Id: TCPReader.java,v 1.8 2001/01/28 05:34:38 tdb Exp $ + * @version $Id: TCPReader.java,v 1.9 2001/02/01 00:18:42 tdb Exp $ */ class TCPReader extends Thread { @@ -26,7 +26,7 @@ class TCPReader extends Thread { /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.8 $"; + public final String REVISION = "$Revision: 1.9 $"; //---STATIC METHODS--- @@ -80,10 +80,10 @@ class TCPReader extends Thread { while(run){ Socket hostSocket=null; try{ - _logger.write(toString(), Logger.SYSMSG, "Waiting for Connection"); + _logger.write(toString(), Logger.DEBUG, "Waiting for Connection"); // This will block until a host connects - at which point we get a Socket hostSocket = listenPort.accept(); - _logger.write(toString(), Logger.SYSMSG, "Connection accepted from: " + hostSocket.toString()); + _logger.write(toString(), Logger.DEBUG, "Connection accepted from: " + hostSocket.toString()); } catch(IOException e){ // Something went wrong with the ServerSocket, so we'll stop listening