Minor clean-up to align with AJP
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Sep 2010 00:27:45 +0000 (00:27 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Sep 2010 00:27:45 +0000 (00:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1002910 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/Http11AprProtocol.java

index d2ed55e..554c2a3 100644 (file)
@@ -369,14 +369,12 @@ public class Http11AprProtocol extends AbstractHttp11Protocol {
 
             } catch (java.net.SocketException e) {
                 // SocketExceptions are normal
-                Http11AprProtocol.log.debug
-                    (sm.getString
-                     ("http11protocol.proto.socketexception.debug"), e);
+                log.debug(sm.getString(
+                        "http11protocol.proto.socketexception.debug"), e);
             } catch (java.io.IOException e) {
                 // IOExceptions are normal
-                Http11AprProtocol.log.debug
-                    (sm.getString
-                     ("http11protocol.proto.ioexception.debug"), e);
+                log.debug(sm.getString(
+                        "http11protocol.proto.ioexception.debug"), e);
             }
             // Future developers: if you discover any other
             // rare-but-nonfatal exceptions, catch them here, and log as
@@ -386,8 +384,8 @@ public class Http11AprProtocol extends AbstractHttp11Protocol {
                 // any other exception or error is odd. Here we log it
                 // with "ERROR" level, so it will show up even on
                 // less-than-verbose logs.
-                Http11AprProtocol.log.error
-                    (sm.getString("http11protocol.proto.error"), e);
+                Http11AprProtocol.log.error(
+                        sm.getString("http11protocol.proto.error"), e);
             }
             recycledProcessors.offer(processor);
             return SocketState.CLOSED;