You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by ru...@apache.org on 2010/12/16 04:55:33 UTC

svn commit: r1049777 - /synapse/branches/2.0/modules/core/src/main/java/org/apache/synapse/config/xml/AbstractMediatorFactory.java

Author: ruwan
Date: Thu Dec 16 03:55:33 2010
New Revision: 1049777

URL: http://svn.apache.org/viewvc?rev=1049777&view=rev
Log:
the log object has to be protected not package private as packages out side of synapse should also be able to use this log object who are deriving from the AbstractMeditorFactory

Modified:
    synapse/branches/2.0/modules/core/src/main/java/org/apache/synapse/config/xml/AbstractMediatorFactory.java

Modified: synapse/branches/2.0/modules/core/src/main/java/org/apache/synapse/config/xml/AbstractMediatorFactory.java
URL: http://svn.apache.org/viewvc/synapse/branches/2.0/modules/core/src/main/java/org/apache/synapse/config/xml/AbstractMediatorFactory.java?rev=1049777&r1=1049776&r2=1049777&view=diff
==============================================================================
--- synapse/branches/2.0/modules/core/src/main/java/org/apache/synapse/config/xml/AbstractMediatorFactory.java (original)
+++ synapse/branches/2.0/modules/core/src/main/java/org/apache/synapse/config/xml/AbstractMediatorFactory.java Thu Dec 16 03:55:33 2010
@@ -43,7 +43,7 @@ import java.util.Properties;
 public abstract class AbstractMediatorFactory implements MediatorFactory {
 
     /** the standard log for mediators, will assign the logger for the actual subclass */
-    static Log log;
+    protected static Log log;
     protected static final QName ATT_NAME    = new QName("name");
     protected static final QName ATT_VALUE   = new QName("value");
     protected static final QName ATT_XPATH   = new QName("xpath");