offline building of site deploy to improve performance.
[utils] / system / spring / src / test / java / org / wamblee / system / spring / component / DatabaseTesterComponent.java
index ddbb6812d12c21d69881f78d43b77b5bb7e3bd6f..2da00a83400d61cc70ea8c56b04689d89353351c 100644 (file)
@@ -1,25 +1,22 @@
 /*
- * Copyright 2005 the original author or authors.
- *
+ * Copyright 2005-2010 the original author or authors.
+ * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- *
+ * 
  *      http://www.apache.org/licenses/LICENSE-2.0
- *
+ * 
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */
+ */ 
 package org.wamblee.system.spring.component;
 
 import junit.framework.TestCase;
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
 import org.dbunit.DatabaseUnitException;
 
 import org.dbunit.database.DatabaseConnection;
@@ -64,6 +61,7 @@ import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
 import java.util.TreeMap;
+import java.util.logging.Logger;
 
 import javax.sql.DataSource;
 
@@ -72,8 +70,8 @@ import javax.sql.DataSource;
  * spring platform transaction manager and hibernate template.
  */
 public class DatabaseTesterComponent {
-    private static final Log LOG = LogFactory
-        .getLog(DatabaseTesterComponent.class);
+    private static final Logger LOG = Logger
+        .getLogger(DatabaseTesterComponent.class.getName());
 
     /**
      * Schema pattern.
@@ -231,7 +229,7 @@ public class DatabaseTesterComponent {
      */
     public String[] getTableNames() throws SQLException {
         List<String> result = new ArrayList<String>();
-        LOG.debug("Getting database table names to clean (schema: '" +
+        LOG.fine("Getting database table names to clean (schema: '" +
             SCHEMA_PATTERN + "'");
 
         ResultSet tables = getConnection().getMetaData().getTables(null,
@@ -244,7 +242,7 @@ public class DatabaseTesterComponent {
             // infrastructure tables.
             if (!table.toLowerCase().startsWith("hibernate")) {
                 result.add(table);
-                LOG.debug("Adding " + table +
+                LOG.fine("Adding " + table +
                     " to list of tables to be cleaned.");
             }
         }