[jboss-cvs] JBoss Messaging SVN: r2412 - trunk/src/main/org/jboss/jms/client/delegate.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Feb 24 01:12:46 EST 2007


Author: clebert.suconic at jboss.com
Date: 2007-02-24 01:12:45 -0500 (Sat, 24 Feb 2007)
New Revision: 2412

Modified:
   trunk/src/main/org/jboss/jms/client/delegate/DelegateSupport.java
Log:
Adding a log.warn statement on handleThrowable

Modified: trunk/src/main/org/jboss/jms/client/delegate/DelegateSupport.java
===================================================================
--- trunk/src/main/org/jboss/jms/client/delegate/DelegateSupport.java	2007-02-24 04:32:34 UTC (rev 2411)
+++ trunk/src/main/org/jboss/jms/client/delegate/DelegateSupport.java	2007-02-24 06:12:45 UTC (rev 2412)
@@ -207,6 +207,7 @@
       }
       else if ((t instanceof CannotConnectException) || (t instanceof IOException))
       {
+         log.warn("Captured Exception:" + t, t);
          return new MessagingNetworkFailureException((Exception)t);
       }
 //      else if (t instanceof Exception && t.getMessage().startsWith("Can not make remoting client invocation"))




More information about the jboss-cvs-commits mailing list