我在哪里可以看到Channel.write()的内容

时间:2014-03-12 16:04:14

标签: netty

我是netty的新手并尝试他们在网站上的示例。我正在为版本3.9做HttpFileServer,而在Handler类中我看到了这个

    Channel ch = e.getChannel();

    // Write the initial line and the header.
    ch.write(response);

在哪里/如何查看正在写入通道实例的内容?

1 个答案:

答案 0 :(得分:1)

您可以将LoggingHandler添加到ChannelPipeline。这将注销所有收到和写入的数据。