Removing noisy logging/debugging

This commit is contained in:
Joakim Erdfelt 2013-01-16 11:12:53 -07:00
parent 1dfee4c992
commit c631d9b461
1 changed files with 0 additions and 3 deletions

View File

@ -699,7 +699,6 @@ public abstract class SelectorManager extends AbstractLifeCycle implements Dumpa
public Connect(SocketChannel channel, Object attachment)
{
LOG.info("Connect({}, {})", channel, attachment);
this.channel = channel;
this.attachment = attachment;
this.timeout = scheduler.schedule(new ConnectTimeout(this), getConnectTimeout(), TimeUnit.MILLISECONDS);
@ -731,14 +730,12 @@ public abstract class SelectorManager extends AbstractLifeCycle implements Dumpa
private ConnectTimeout(Connect connect)
{
LOG.info("Created");
this.connect = connect;
}
@Override
public void run()
{
LOG.info("In Run");
SocketChannel channel = connect.channel;
if (channel.isConnectionPending())
{