[logback-dev] svn commit: r743 - logback/trunk/logback-access/src/main/java/ch/qos/logback/access/joran/action

noreply.ceki at qos.ch noreply.ceki at qos.ch
Mon Oct 23 19:02:39 CEST 2006


Author: ceki
Date: Mon Oct 23 19:02:39 2006
New Revision: 743

Modified:
   logback/trunk/logback-access/src/main/java/ch/qos/logback/access/joran/action/ConfigurationAction.java

Log:
- renaming of ch.qos.logback.core.joran.spi.ExecutionContext as InterpretationContext


Modified: logback/trunk/logback-access/src/main/java/ch/qos/logback/access/joran/action/ConfigurationAction.java
==============================================================================
--- logback/trunk/logback-access/src/main/java/ch/qos/logback/access/joran/action/ConfigurationAction.java	(original)
+++ logback/trunk/logback-access/src/main/java/ch/qos/logback/access/joran/action/ConfigurationAction.java	Mon Oct 23 19:02:39 2006
@@ -13,7 +13,7 @@
 import org.xml.sax.Attributes;
 
 import ch.qos.logback.core.joran.action.Action;
-import ch.qos.logback.core.joran.spi.ExecutionContext;
+import ch.qos.logback.core.joran.spi.InterpretationContext;
 
 
 
@@ -21,14 +21,14 @@
   static final String INTERNAL_DEBUG_ATTR = "debug";
   boolean attachment = false;
 
-  public void begin(ExecutionContext ec, String name, Attributes attributes) {
+  public void begin(InterpretationContext ec, String name, Attributes attributes) {
     //String debugAttrib = attributes.getValue(INTERNAL_DEBUG_ATTR);
 
     // the context is appender attachable, so it is pushed on top of the stack
     ec.pushObject(getContext());
   }
 
-  public void end(ExecutionContext ec, String name) {
+  public void end(InterpretationContext ec, String name) {
     ec.popObject();
   }
 }



More information about the logback-dev mailing list