diff --git a/example/src/main/java/io/netty/example/http/snoop/HttpSnoopServerPipelineFactory.java b/example/src/main/java/io/netty/example/http/snoop/HttpSnoopServerPipelineFactory.java index e8241e96ce..68f638a6ff 100644 --- a/example/src/main/java/io/netty/example/http/snoop/HttpSnoopServerPipelineFactory.java +++ b/example/src/main/java/io/netty/example/http/snoop/HttpSnoopServerPipelineFactory.java @@ -30,7 +30,6 @@ public class HttpSnoopServerPipelineFactory implements ChannelPipelineFactory { public ChannelPipeline getPipeline() throws Exception { // Create a default pipeline implementation. ChannelPipeline pipeline = pipeline(); - pipeline.addLast("log", new LoggingHandler(InternalLogLevel.INFO)); // Uncomment the following line if you want HTTPS //SSLEngine engine = SecureChatSslContextFactory.getServerContext().createSSLEngine();