Avoid boxing of the number of bytes flushed.

This commit is contained in:
Simone Bordet 2014-02-18 13:47:53 +01:00
parent 4bdca367dd
commit 5d8b00a098
1 changed files with 2 additions and 1 deletions

View File

@ -181,7 +181,8 @@ public class ChannelEndPoint extends AbstractEndPoint
}
}
}
LOG.debug("flushed {} {}", flushed, this);
if (LOG.isDebugEnabled())
LOG.debug("flushed {} {}", flushed, this);
}
catch (IOException e)
{