Remove the debug logging since we got to the bottom of this failure a while ago.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 29 Aug 2010 14:18:35 +0000 (14:18 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 29 Aug 2010 14:18:35 +0000 (14:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@990582 13f79535-47bb-0310-9956-ffa450edef68

test/org/apache/catalina/connector/TestCoyoteAdapter.java

index 877fe84..76b4e11 100644 (file)
@@ -19,8 +19,6 @@ package org.apache.catalina.connector;
 import java.io.File;
 import java.io.IOException;
 import java.io.PrintWriter;
-import java.util.logging.Level;
-import java.util.logging.Logger;
 
 import javax.servlet.ServletException;
 import javax.servlet.http.HttpServlet;
@@ -106,10 +104,6 @@ public class TestCoyoteAdapter extends TomcatBaseTest {
         Tomcat.addServlet(ctx, "servlet", new PathParamServlet());
         ctx.addServletMapping("/", "servlet");
 
-        // Set the logging to debug for this class whilst we debug Gump failures
-        Logger.getLogger(CoyoteAdapter.class.getName()).setLevel(Level.ALL);
-        Logger.getLogger("").getHandlers()[0].setLevel(Level.ALL);
-        
         tomcat.start();
 
         ByteChunk res = getUrl("http://localhost:" + getPort() + path);