[jboss-cvs] JBoss Messaging SVN: r2240 - trunk/tests/src/org/jboss/test/messaging/tools/jmx.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Feb 9 07:33:15 EST 2007


Author: timfox
Date: 2007-02-09 07:33:15 -0500 (Fri, 09 Feb 2007)
New Revision: 2240

Modified:
   trunk/tests/src/org/jboss/test/messaging/tools/jmx/ServiceContainer.java
Log:
Ignore exceptions in dropping tables otherwise too much noise in the logs


Modified: trunk/tests/src/org/jboss/test/messaging/tools/jmx/ServiceContainer.java
===================================================================
--- trunk/tests/src/org/jboss/test/messaging/tools/jmx/ServiceContainer.java	2007-02-09 12:32:52 UTC (rev 2239)
+++ trunk/tests/src/org/jboss/test/messaging/tools/jmx/ServiceContainer.java	2007-02-09 12:33:15 UTC (rev 2240)
@@ -1428,7 +1428,7 @@
       }
       catch (SQLException e)
       {
-         log.debug("Failed to drop table", e);
+         //Ignore
       }
 
       try
@@ -1445,7 +1445,7 @@
       }
       catch (SQLException e)
       {
-         log.debug("Failed to drop table", e);
+         // Ignore
       }
 
       try
@@ -1461,7 +1461,7 @@
       }
       catch (SQLException e)
       {
-         log.debug("Failed to drop table", e);
+         // Ignore
       }
 
       try
@@ -1477,7 +1477,7 @@
       }
       catch (SQLException e)
       {
-         log.debug("Failed to drop table", e);
+         // Ignore
       }
 
       try
@@ -1493,7 +1493,7 @@
       }
       catch (SQLException e)
       {
-         log.debug("Failed to drop table", e);
+         // Ignore
       }
 
       try
@@ -1508,7 +1508,7 @@
       }
       catch (SQLException e)
       {
-         log.debug("Failed to drop table", e);
+         // Ignore
       }
       
       try
@@ -1524,7 +1524,7 @@
       }
       catch (SQLException e)
       {
-         log.debug("Failed to drop table", e);
+         // Ignore
       }
       
       conn.close();




More information about the jboss-cvs-commits mailing list