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

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Thu Mar 13 00:57:25 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-03-13 00:57:25 -0400 (Thu, 13 Mar 2008)
New Revision: 3619

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

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/stream/StreamHandler.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/stream/StreamHandler.java	2008-03-13 04:56:54 UTC (rev 3618)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/stream/StreamHandler.java	2008-03-13 04:57:25 UTC (rev 3619)
@@ -106,7 +106,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error getting available from client stream.", throwable);
+         log.debug("Error getting available from client stream.", throwable);
          throw new IOException(throwable.getMessage());
       }
       return readInt;
@@ -129,7 +129,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error closing client stream.", throwable);
+         log.debug("Error closing client stream.", throwable);
          throw new IOException(throwable.getMessage());
       }
    }
@@ -187,7 +187,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error reseting client stream.", throwable);
+         log.debug("Error reseting client stream.", throwable);
          throw new IOException(throwable.getMessage());
       }
    }
@@ -218,7 +218,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error getting markSupported from client stream.", throwable);
+         log.debug("Error getting markSupported from client stream.", throwable);
          throw new RuntimeException(throwable.getMessage(), throwable);
       }
       return supported;
@@ -258,7 +258,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error marking with read limit on client stream.", throwable);
+         log.debug("Error marking with read limit on client stream.", throwable);
          throw new RuntimeException(throwable.getMessage(), throwable);
       }
    }
@@ -297,7 +297,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error skipping on client stream.", throwable);
+         log.debug("Error skipping on client stream.", throwable);
          throw new IOException(throwable.getMessage());
       }
 
@@ -378,7 +378,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error reading from client stream.", throwable);
+         log.debug("Error reading from client stream.", throwable);
          throw new IOException(throwable.getMessage());
       }
 
@@ -496,7 +496,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error reading with offset from client stream.", throwable);
+         log.debug("Error reading with offset from client stream.", throwable);
          throw new IOException(throwable.getMessage());
       }
 
@@ -531,7 +531,7 @@
       }
       catch(Throwable throwable)
       {
-         log.error("Error reading from client stream.", throwable);
+         log.debug("Error reading from client stream.", throwable);
          throw new IOException(throwable.getMessage());
       }
       return readInt;




More information about the jboss-remoting-commits mailing list