Merged branch 'jetty-9.4.x' into 'master'.

This commit is contained in:
Simone Bordet 2016-06-17 10:26:59 +02:00
commit 559d8af3e7
1 changed files with 4 additions and 2 deletions

View File

@ -321,12 +321,14 @@ public abstract class HTTP2Session extends ContainerLifeCycle implements ISessio
case SettingsFrame.MAX_HEADER_LIST_SIZE: case SettingsFrame.MAX_HEADER_LIST_SIZE:
{ {
// TODO implement // TODO implement
LOG.warn("NOT IMPLEMENTED max header list size to {}", value); if (LOG.isDebugEnabled())
LOG.debug("NOT IMPLEMENTED max header list size to {}", value);
break; break;
} }
default: default:
{ {
LOG.debug("Unknown setting {}:{}", key, value); if (LOG.isDebugEnabled())
LOG.debug("Unknown setting {}:{}", key, value);
break; break;
} }
} }