[jboss-cvs] JBossAS SVN: r64394 - trunk/connector/src/main/org/jboss/resource/adapter/jdbc/local.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jul 31 23:57:28 EDT 2007


Author: anil.saldhana at jboss.com
Date: 2007-07-31 23:57:27 -0400 (Tue, 31 Jul 2007)
New Revision: 64394

Modified:
   trunk/connector/src/main/org/jboss/resource/adapter/jdbc/local/LocalManagedConnectionFactory.java
Log:
JBAS-4584: Wonder what Clebert wanted with passing an exception object to log in INFO mode

Modified: trunk/connector/src/main/org/jboss/resource/adapter/jdbc/local/LocalManagedConnectionFactory.java
===================================================================
--- trunk/connector/src/main/org/jboss/resource/adapter/jdbc/local/LocalManagedConnectionFactory.java	2007-08-01 01:52:36 UTC (rev 64393)
+++ trunk/connector/src/main/org/jboss/resource/adapter/jdbc/local/LocalManagedConnectionFactory.java	2007-08-01 03:57:27 UTC (rev 64394)
@@ -202,8 +202,7 @@
 	   try
 	   {
 		   String url = getConnectionURL();
-		   Driver d = getDriver(url);
-	      	 log.info("Connection to URL:" + url, new Exception());
+		   Driver d = getDriver(url); 
 		   Connection con = d.connect(url, copy);
 		   if (con == null)
 			   throw new JBossResourceException("Wrong driver class for this connection URL");
@@ -231,8 +230,7 @@
     	  }
          try
          {
-        	 Driver d = getDriver(url);
-	      	 log.info("Connection to URL:" + url, new Exception());
+        	 Driver d = getDriver(url); 
         	 Connection con = d.connect(url, copy);
 	         if(con == null)
 	         {




More information about the jboss-cvs-commits mailing list