Removing noisy logging/debugging
This commit is contained in:
parent
1dfee4c992
commit
c631d9b461
|
@ -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())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue