Fixed logging.

This commit is contained in:
Simone Bordet 2014-06-10 22:19:55 +02:00
parent 6b77226517
commit 13b0b90aa9
1 changed files with 2 additions and 2 deletions

View File

@ -110,8 +110,8 @@ public class HttpTransportOverHTTP2 implements HttpTransport
{
if (LOG.isDebugEnabled())
{
LOG.debug("HTTP2 Response #{}: {} {}content bytes",
stream.getId(), lastContent ? "last " : "", content.remaining());
LOG.debug("HTTP2 Response #{}: {} content bytes{}",
stream.getId(), content.remaining(), lastContent ? " (last chunk)" : "");
}
DataFrame frame = new DataFrame(stream.getId(), content, lastContent);