Print

Print


Commit in lcsim/src/org/lcsim/plugin/web/examples on MAIN
BooleanCondition.java+3-31.1 -> 1.2
JM: Use System.out instead of logger.

lcsim/src/org/lcsim/plugin/web/examples
BooleanCondition.java 1.1 -> 1.2
diff -u -r1.1 -r1.2
--- BooleanCondition.java	9 Feb 2006 19:36:45 -0000	1.1
+++ BooleanCondition.java	9 Feb 2006 19:42:41 -0000	1.2
@@ -5,7 +5,7 @@
  * An example of setting and retrieving a boolean value from the EventHeader.
  * 
  * @author jeremym
- * @version $Id: BooleanCondition.java,v 1.1 2006/02/09 19:36:45 jeremy Exp $
+ * @version $Id: BooleanCondition.java,v 1.2 2006/02/09 19:42:41 jeremy Exp $
  */
 public class BooleanCondition extends Driver
 {
@@ -33,9 +33,9 @@
             
             // Condition based on the boolean value.
             if (bool)
-                getLogger().info("MyBool is TRUE");
+                System.out.println("MyBool is TRUE");
             else
-                getLogger().info("MyBool is FALSE");                
+                System.out.println("MyBool is FALSE");                
         }
     }    
 }
CVSspam 0.2.8