You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2009/12/04 20:41:41 UTC

svn commit: r887331 - /incubator/uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/controller/AggregateAnalysisEngineController_impl.java

Author: cwiklik
Date: Fri Dec  4 19:41:40 2009
New Revision: 887331

URL: http://svn.apache.org/viewvc?rev=887331&view=rev
Log:
UIMA-1696 Modified log message in simpleStep() to swap order of arguments. 

Modified:
    incubator/uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/controller/AggregateAnalysisEngineController_impl.java

Modified: incubator/uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/controller/AggregateAnalysisEngineController_impl.java
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/controller/AggregateAnalysisEngineController_impl.java?rev=887331&r1=887330&r2=887331&view=diff
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/controller/AggregateAnalysisEngineController_impl.java (original)
+++ incubator/uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/controller/AggregateAnalysisEngineController_impl.java Fri Dec  4 19:41:40 2009
@@ -1193,7 +1193,7 @@
         if (UIMAFramework.getLogger(CLASS_NAME).isLoggable(Level.FINEST)) {
           UIMAFramework.getLogger(CLASS_NAME).logrb(Level.FINEST, CLASS_NAME.getName(),
                   "simpleStep", UIMAEE_Constants.JMS_LOG_RESOURCE_BUNDLE,
-                  "UIMAEE_next_step__FINEST", new Object[] { aCasReferenceId,analysisEngineKey  });
+                  "UIMAEE_next_step__FINEST", new Object[] {analysisEngineKey, aCasReferenceId  });
         }
 
         // Reset number of parallel delegates back to one. This is done only if the previous step
@@ -1217,7 +1217,7 @@
             UIMAFramework.getLogger(CLASS_NAME).logrb(Level.FINEST, CLASS_NAME.getName(),
                     "simpleStep", UIMAEE_Constants.JMS_LOG_RESOURCE_BUNDLE,
                     "UIMAEE_next_step_dispatch_completed__FINEST",
-                    new Object[] { getComponentName(), analysisEngineKey, aCasReferenceId  });
+                    new Object[] { getComponentName(),   analysisEngineKey, aCasReferenceId });
           }
         }
       }