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

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Thu Mar 13 00:56:06 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-03-13 00:56:06 -0400 (Thu, 13 Mar 2008)
New Revision: 3615

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

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/ServerInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/ServerInvoker.java	2008-03-13 04:55:43 UTC (rev 3614)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/ServerInvoker.java	2008-03-13 04:56:06 UTC (rev 3615)
@@ -1697,7 +1697,7 @@
          // the only elements should be the callback handler and possibly the callback handle object
          if(params == null || params.length < 0 || params.length > 3)
          {
-            log.error("Recieved addClientListener InternalInvocation, but getParameters() " +
+            log.debug("Received addClientListener InternalInvocation, but getParameters() " +
                       "returned: " + params);
             throw new RuntimeException(
                "InvokerCallbackHandler and callback handle object (optional) must be supplied as " +
@@ -1768,7 +1768,7 @@
          }
          else
          {
-            log.error("Client request is an InputStream, but the registered handlers do not " +
+            log.debug("Client request is an InputStream, but the registered handlers do not " +
                       "implement the StreamInvocationHandler interface, so could not process call.");
             throw new RuntimeException(
                "No handler registered of proper type (StreamInvocationHandler).");
@@ -1789,7 +1789,7 @@
       }
       else
       {
-         log.error("Error processing InternalInvocation.  Unable to process method " +
+         log.debug("Error processing InternalInvocation.  Unable to process method " +
                    methodName + ". Please make sure this should be an InternalInvocation.");
          throw new RuntimeException(
             "Error processing InternalInvocation. Unable to process method " + methodName);




More information about the jboss-remoting-commits mailing list