You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by ma...@apache.org on 2013/12/18 16:44:59 UTC

git commit: Add debug log to CEP

Updated Branches:
  refs/heads/master ef757e2ea -> e3641513f


Add debug log to CEP


Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/e3641513
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/e3641513
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/e3641513

Branch: refs/heads/master
Commit: e3641513fea0d7eeb65cc08654cc2e90b40173bc
Parents: ef757e2
Author: Manula Thantriwatte <ma...@apache.org>
Authored: Wed Dec 18 21:14:38 2013 +0530
Committer: Manula Thantriwatte <ma...@apache.org>
Committed: Wed Dec 18 21:14:38 2013 +0530

----------------------------------------------------------------------
 .../apache/stratos/cep/extension/FaultHandlingWindowProcessor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/e3641513/extensions/cep/stratos-cep-extension/src/main/java/org/apache/stratos/cep/extension/FaultHandlingWindowProcessor.java
----------------------------------------------------------------------
diff --git a/extensions/cep/stratos-cep-extension/src/main/java/org/apache/stratos/cep/extension/FaultHandlingWindowProcessor.java b/extensions/cep/stratos-cep-extension/src/main/java/org/apache/stratos/cep/extension/FaultHandlingWindowProcessor.java
index dda419c..1c085ce 100644
--- a/extensions/cep/stratos-cep-extension/src/main/java/org/apache/stratos/cep/extension/FaultHandlingWindowProcessor.java
+++ b/extensions/cep/stratos-cep-extension/src/main/java/org/apache/stratos/cep/extension/FaultHandlingWindowProcessor.java
@@ -72,9 +72,9 @@ public class FaultHandlingWindowProcessor extends WindowProcessor implements Run
 
     protected void addDataToMap(InEvent event) {
         if (memberID != null) {
-            log.debug("Add member : " + memberID);
             String id = (String)event.getData()[subjectedAttrIndex];
             timeStampMap.put(id, event);
+            log.debug("Add member : " + id);
         }
         else {
             System.out.println("Member ID null");