From 81ad99bc396e37e3dce857b5841953a9abc58064 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Wed, 29 Feb 2012 14:05:44 -0800 Subject: [PATCH] Remove logging which was added accidently --- .../netty/example/http/snoop/HttpSnoopServerPipelineFactory.java | 1 - 1 file changed, 1 deletion(-) 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();