(no commit message)
[utils] / support / general / src / test / java / org / wamblee / test / EventTracker.java
index e66d01475e08a50ee3f18c15ad451506f2ecbe0b..c2b18f6d0c4ded723a6f0a7ee0622edf1fc748d1 100644 (file)
  */ 
 package org.wamblee.test;
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
 import java.util.ArrayList;
 import java.util.Collections;
 import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
+import java.util.logging.Logger;
 
 /**
  * Tracks the occurence of certain events in a test environment. Threads in a
@@ -41,7 +39,7 @@ import java.util.Map;
  * @author Erik Brakkee
  */
 public class EventTracker<Event> {
-    private static final Log LOG = LogFactory.getLog(EventTracker.class);
+    private static final Logger LOG = Logger.getLogger(EventTracker.class.getName());
 
     /**
      * Map of Thread object to a list of events.