[jboss-remoting-commits] JBoss Remoting SVN: r3603 - 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:52:33 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-03-12 03:52:33 -0400 (Wed, 12 Mar 2008)
New Revision: 3603

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

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/callback/CallbackPoller.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/callback/CallbackPoller.java	2008-03-12 06:08:24 UTC (rev 3602)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/callback/CallbackPoller.java	2008-03-12 07:52:33 UTC (rev 3603)
@@ -209,7 +209,8 @@
             return;
          }
          
-         log.error(this + " Error getting callbacks from server.", throwable);
+         log.info(this + " Error getting callbacks from server.");
+         log.debug(this + " Error getting callbacks from server.", throwable);
          String errorMessage = throwable.getMessage();
          if (errorMessage != null)
          {
@@ -362,7 +363,7 @@
                   }
                   catch (InterruptedException e)
                   {
-                     log.warn("unexpected interrupt");
+                     log.debug("unexpected interrupt");
                      continue;
                   }
                }
@@ -462,7 +463,7 @@
                   }
                   catch (InterruptedException e)
                   {
-                     log.warn("unexpected interrupt");
+                     log.debug("unexpected interrupt");
                      continue;
                   }
                }




More information about the jboss-remoting-commits mailing list