[jboss-remoting-commits] JBoss Remoting SVN: r3604 - remoting2/branches/2.x/src/main/org/jboss/remoting/callback.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Mar 12 03:53:06 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-03-12 03:53:05 -0400 (Wed, 12 Mar 2008)
New Revision: 3604

Modified:
   remoting2/branches/2.x/src/main/org/jboss/remoting/callback/ServerInvokerCallbackHandler.java
Log:
JBREM-826: Removed some log.error() calls.

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/callback/ServerInvokerCallbackHandler.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/callback/ServerInvokerCallbackHandler.java	2008-03-12 07:52:33 UTC (rev 3603)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/callback/ServerInvokerCallbackHandler.java	2008-03-12 07:53:05 UTC (rev 3604)
@@ -634,7 +634,7 @@
       }
       catch(IOException e)
       {
-         log.error("Can not get persisted callbacks.", e);
+         log.debug("Can not get persisted callbacks.", e);
          throw new RuntimeException("Error getting callbacks", e);
       }
       callbackList.addAll(persistedCallbacks);
@@ -765,7 +765,7 @@
                }
                catch(IOException e)
                {
-                  log.error("Unable to persist callback", e);
+                  log.debug("Unable to persist callback", e);
                   throw new HandleCallbackException("Unable to persist callback and will not " +
                                                     "be able to deliver.", e);
                }
@@ -852,7 +852,7 @@
       }
       catch(Throwable t)
       {
-         log.error("Error handling callback", t);
+         log.debug("Error handling callback", t);
          throw new HandleCallbackException("Error handling callback", t);
       }
    }




More information about the jboss-remoting-commits mailing list