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

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Mar 12 02:05:47 EDT 2008


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

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

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/AbstractInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/AbstractInvoker.java	2008-03-11 23:54:16 UTC (rev 3600)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/AbstractInvoker.java	2008-03-12 06:05:46 UTC (rev 3601)
@@ -89,7 +89,7 @@
 	  }
 	  catch (PrivilegedActionException e)
 	  {
-		  log.error(e.toString(), e);
+		  log.debug(e.toString(), e);
 		  throw new RuntimeException("Can't create a ClassLoader", e);
 	  }
       this.locator = locator;
@@ -277,7 +277,7 @@
 	  }
 	  catch (PrivilegedActionException e)
 	  {
-		  log.error(e.toString(), e);
+		  log.debug(e.toString(), e);
 		  throw new RuntimeException("Can't create a ClassLoader", e);
 	  }
    }
@@ -413,13 +413,13 @@
          }
          catch (Exception e)
          {
-            log.error("unable to instantiate class: " + o, e);
+            log.warn("unable to instantiate class: " + o, e);
             return socketFactory;
          }
       }
       else
       {
-         log.error("unrecognized type for socket creation client listener: " + o);
+         log.warn("unrecognized type for socket creation client listener: " + o);
          return socketFactory;
       }
    }




More information about the jboss-remoting-commits mailing list