Improved logging.

This commit is contained in:
Simone Bordet 2015-09-13 11:33:58 +02:00
parent 361c27244a
commit 30532786cc
2 changed files with 11 additions and 1 deletions

View File

@ -199,6 +199,8 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
@Override
public void onPriority(PriorityFrame frame)
{
if (LOG.isDebugEnabled())
LOG.debug("Received {}", frame);
}
@Override
@ -223,6 +225,9 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
public void onSettings(SettingsFrame frame, boolean reply)
{
if (LOG.isDebugEnabled())
LOG.debug("Received {}", frame);
if (frame.isReply())
return;
@ -305,6 +310,7 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
{
if (LOG.isDebugEnabled())
LOG.debug("Received {}", frame);
if (frame.isReply())
{
notifyPing(this, frame);
@ -383,6 +389,7 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
{
if (LOG.isDebugEnabled())
LOG.debug("Received {}", frame);
int streamId = frame.getStreamId();
if (streamId > 0)
{
@ -644,7 +651,7 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
return null;
}
}
public IStream createUpgradeStream()
{
// SPEC: upgrade stream is id=1 and can't exceed maximum

View File

@ -68,6 +68,9 @@ public class HTTP2ServerSession extends HTTP2Session implements ServerParser.Lis
@Override
public void onHeaders(HeadersFrame frame)
{
if (LOG.isDebugEnabled())
LOG.debug("Received {}", frame);
MetaData metaData = frame.getMetaData();
if (metaData.isRequest())
{