- Timestamp:
- 06/08/07 20:15:22 (18 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0-Beta2/components/tools/WebAdmin/test/TestDelete.java
r1539 r1607 1 1 2 3 import org.apache.commons.logging.Log; 4 import org.apache.commons.logging.LogFactory; 2 5 3 6 import ome.api.IAdmin; … … 12 15 13 16 public class TestDelete { 17 18 private static Log log = LogFactory.getLog(TestDelete.class); 14 19 15 20 public static void main(String args[]) { … … 31 36 32 37 for (int i=0; i<exg.length; i++) { 33 System.out.println(exg[i].getName()); 38 if (log.isDebugEnabled()) { 39 log.debug(exg[i].getName()); 40 } 34 41 } 35 42
