Restored proper logging level.

This commit is contained in:
Simone Bordet 2014-04-09 18:33:23 +02:00
parent f50fe43fb6
commit 44fe5daa69
1 changed files with 2 additions and 2 deletions

View File

@ -298,8 +298,8 @@ public abstract class HttpReceiver
if (decoder != null)
{
buffer = decoder.decode(buffer);
// if (LOG.isDebugEnabled())
LOG.info("Response content decoded ({}) {}{}{}", decoder, response, System.getProperty("line.separator"), BufferUtil.toDetailString(buffer));
if (LOG.isDebugEnabled())
LOG.debug("Response content decoded ({}) {}{}{}", decoder, response, System.getProperty("line.separator"), BufferUtil.toDetailString(buffer));
}
ResponseNotifier notifier = getHttpDestination().getResponseNotifier();