add more debug info about discarded message

This commit is contained in:
Norman Maurer 2013-02-19 19:08:04 +01:00
parent 74738fbd08
commit 5bda3a25b0

View File

@ -1159,6 +1159,9 @@ final class DefaultChannelPipeline implements ChannelPipeline {
if (m instanceof ReferenceCounted) {
((ReferenceCounted) m).release();
}
logger.debug(
"Discarded inbound message {} that reached at the end of the pipeline. " +
"Please check your pipeline configuration.", m);
}
logger.warn(
"Discarded {} inbound message(s) that reached at the end of the pipeline. " +
@ -1295,6 +1298,9 @@ final class DefaultChannelPipeline implements ChannelPipeline {
ByteBuf src = (ByteBuf) m;
byteSink.writeBytes(src, src.readerIndex(), src.readableBytes());
} else {
logger.debug(
"Discarded outbound message {} that reached at the end of the pipeline. " +
"Please check your pipeline configuration.", m);
discardedMessages ++;
}