Author: ffang
Date: Thu Dec 23 01:46:58 2010
New Revision: 1052131
URL: http://svn.apache.org/viewvc?rev=1052131&view=rev
Log:
Merged revisions 1051900 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1051900 | ffang | 2010-12-22 21:50:03 +0800 (δΈ‰, 22 12 2010) | 1 line
use correct Logger name
........
Modified:
cxf/branches/2.3.x-fixes/ (props changed)
cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java?rev=1052131&r1=1052130&r2=1052131&view=diff
==============================================================================
---
cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
(original)
+++
cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
Thu Dec 23 01:46:58 2010
@@ -44,7 +44,7 @@ import org.apache.cxf.phase.AbstractPhas
*/
public abstract class AbstractLoggingInterceptor extends
AbstractPhaseInterceptor<Message> {
- protected static final Logger LOG =
LogUtils.getL7dLogger(LoggingInInterceptor.class);
+ protected static final Logger LOG =
LogUtils.getL7dLogger(AbstractLoggingInterceptor.class);
protected int limit = 100 * 1024;
protected PrintWriter writer;