Improved logging.
This commit is contained in:
parent
3f80ec2bc2
commit
ec4b987b4d
|
@ -16,7 +16,6 @@ package org.eclipse.jetty.io.ssl;
|
|||
import java.io.IOException;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.util.concurrent.Executor;
|
||||
|
||||
import javax.net.ssl.SSLEngine;
|
||||
import javax.net.ssl.SSLEngineResult;
|
||||
import javax.net.ssl.SSLEngineResult.HandshakeStatus;
|
||||
|
@ -321,7 +320,7 @@ public class SslConnection extends AbstractAsyncConnection
|
|||
@Override
|
||||
public synchronized int fill(ByteBuffer buffer) throws IOException
|
||||
{
|
||||
LOG.debug("{} fill",SslConnection.this);
|
||||
LOG.debug("{} fill enter",SslConnection.this);
|
||||
try
|
||||
{
|
||||
// Do we already have some decrypted data?
|
||||
|
@ -463,14 +462,14 @@ public class SslConnection extends AbstractAsyncConnection
|
|||
_bufferPool.release(_appIn);
|
||||
_appIn=null;
|
||||
}
|
||||
LOG.debug("{} !fill",SslConnection.this);
|
||||
LOG.debug("{} fill exit",SslConnection.this);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized int flush(ByteBuffer... appOuts) throws IOException
|
||||
{
|
||||
LOG.debug("{} flush",SslConnection.this);
|
||||
LOG.debug("{} flush enter",SslConnection.this);
|
||||
try
|
||||
{
|
||||
if (_netWriting)
|
||||
|
@ -557,7 +556,7 @@ public class SslConnection extends AbstractAsyncConnection
|
|||
}
|
||||
finally
|
||||
{
|
||||
LOG.debug("{} !flush",SslConnection.this);
|
||||
LOG.debug("{} flush exit",SslConnection.this);
|
||||
releaseNetOut();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue