You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2011/06/01 11:00:27 UTC

svn commit: r1130062 - in /httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging: LoggingNHttpClientConnection.java LoggingNHttpServerConnection.java

Author: olegk
Date: Wed Jun  1 09:00:27 2011
New Revision: 1130062

URL: http://svn.apache.org/viewvc?rev=1130062&view=rev
Log:
Wrong log category

Modified:
    httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpClientConnection.java
    httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpServerConnection.java

Modified: httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpClientConnection.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpClientConnection.java?rev=1130062&r1=1130061&r2=1130062&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpClientConnection.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpClientConnection.java Wed Jun  1 09:00:27 2011
@@ -70,7 +70,7 @@ public class LoggingNHttpClientConnectio
         this.wirelog = LogFactory.getLog("org.apache.http.wire");
         this.id = "http-outgoing-" + COUNT.incrementAndGet();
         if (this.iolog.isDebugEnabled() || this.wirelog.isDebugEnabled()) {
-            this.session = new LoggingIOSession(session, this.id, this.headerlog, this.wirelog);
+            this.session = new LoggingIOSession(session, this.id, this.iolog, this.wirelog);
         }
     }
 

Modified: httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpServerConnection.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpServerConnection.java?rev=1130062&r1=1130061&r2=1130062&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpServerConnection.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-contrib/src/main/java/org/apache/http/contrib/logging/LoggingNHttpServerConnection.java Wed Jun  1 09:00:27 2011
@@ -70,7 +70,7 @@ public class LoggingNHttpServerConnectio
         this.wirelog = LogFactory.getLog("org.apache.http.wire");
         this.id = "http-incoming-" + COUNT.incrementAndGet();
         if (this.iolog.isDebugEnabled() || this.wirelog.isDebugEnabled()) {
-            this.session = new LoggingIOSession(session, this.id, this.headerlog, this.wirelog);
+            this.session = new LoggingIOSession(session, this.id, this.iolog, this.wirelog);
         }
     }