JBoss Remoting SVN: r3625 - remoting2/branches/2.x/src/main/org/jboss/remoting/transport/sslbisocket.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:59:19 -0400 (Thu, 13 Mar 2008)
New Revision: 3625
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketClientInvoker.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketClientInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketClientInvoker.java 2008-03-13 04:59:00 UTC (rev 3624)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketClientInvoker.java 2008-03-13 04:59:19 UTC (rev 3625)
@@ -61,7 +61,7 @@
}
catch (Exception ex)
{
- log.error("Error setting up ssl bisocket client invoker.", ex);
+ log.debug("Error setting up ssl bisocket client invoker.", ex);
throw new RuntimeException(ex.getMessage());
}
}
@@ -75,7 +75,7 @@
}
catch (Exception ex)
{
- log.error("Error setting up ssl bisocket client invoker.", ex);
+ log.debug("Error setting up ssl bisocket client invoker.", ex);
throw new RuntimeException(ex.getMessage());
}
}
16 years, 9 months
JBoss Remoting SVN: r3624 - remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:59:00 -0400 (Thu, 13 Mar 2008)
New Revision: 3624
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/SocketClientInvoker.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/SocketClientInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/SocketClientInvoker.java 2008-03-13 04:58:49 UTC (rev 3623)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/SocketClientInvoker.java 2008-03-13 04:59:00 UTC (rev 3624)
@@ -112,7 +112,7 @@
if (ex instanceof ClassNotFoundException)
{
//TODO: -TME Add better exception handling for class not found exception
- log.error("Error loading classes from remote call result.", ex);
+ log.debug("Error loading classes from remote call result.", ex);
throw (ClassNotFoundException) ex;
}
16 years, 9 months
JBoss Remoting SVN: r3623 - remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:58:49 -0400 (Thu, 13 Mar 2008)
New Revision: 3623
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java 2008-03-13 04:58:27 UTC (rev 3622)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/socket/MicroSocketClientInvoker.java 2008-03-13 04:58:49 UTC (rev 3623)
@@ -266,7 +266,7 @@
}
catch (Exception ex)
{
- log.error("Error setting up " + this, ex);
+ log.debug("Error setting up " + this, ex);
throw new RuntimeException(ex.getMessage());
}
@@ -905,7 +905,7 @@
if (ex instanceof ClassNotFoundException)
{
//TODO: -TME Add better exception handling for class not found exception
- log.error("Error loading classes from remote call result.", ex);
+ log.debug("Error loading classes from remote call result.", ex);
throw (ClassNotFoundException)ex;
}
16 years, 9 months
JBoss Remoting SVN: r3622 - remoting2/branches/2.x/src/main/org/jboss/remoting/transport/coyote.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:58:27 -0400 (Thu, 13 Mar 2008)
New Revision: 3622
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/transport/coyote/CoyoteInvoker.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/coyote/CoyoteInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/coyote/CoyoteInvoker.java 2008-03-13 04:58:08 UTC (rev 3621)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/coyote/CoyoteInvoker.java 2008-03-13 04:58:27 UTC (rev 3622)
@@ -221,7 +221,7 @@
}
catch (IOException e)
{
- log.error("unable to create server socket factory", e);
+ log.debug("unable to create server socket factory", e);
throw e;
}
}
@@ -264,7 +264,7 @@
}
catch(Exception e)
{
- log.error("Error starting protocol handler. Bind port: " + getServerBindPort() + ", bind address: " + getServerBindAddress(), e);
+ log.debug("Error starting protocol handler. Bind port: " + getServerBindPort() + ", bind address: " + getServerBindAddress(), e);
throw new IOException("" + e.getMessage());
}
}
16 years, 9 months
JBoss Remoting SVN: r3621 - remoting2/branches/2.x/src/main/org/jboss/remoting/transport/bisocket.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:58:08 -0400 (Thu, 13 Mar 2008)
New Revision: 3621
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/transport/bisocket/BisocketServerInvoker.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/bisocket/BisocketServerInvoker.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/bisocket/BisocketServerInvoker.java 2008-03-13 04:57:51 UTC (rev 3620)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/bisocket/BisocketServerInvoker.java 2008-03-13 04:58:08 UTC (rev 3621)
@@ -308,7 +308,7 @@
}
catch (Throwable t)
{
- log.error("unable to get secondary locator", t);
+ log.debug("unable to get secondary locator", t);
throw new IOException("unable to get secondary locator: " + t.getMessage());
}
@@ -387,7 +387,7 @@
if (socket == null)
{
- log.error("unable to create control connection after "
+ log.debug("unable to create control connection after "
+ socketCreationRetries + " retries", savedException);
throw savedException;
}
16 years, 9 months
JBoss Remoting SVN: r3620 - remoting2/branches/2.x/src/main/org/jboss/remoting/transport.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:57:51 -0400 (Thu, 13 Mar 2008)
New Revision: 3620
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/transport/Connector.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/transport/Connector.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/transport/Connector.java 2008-03-13 04:57:25 UTC (rev 3619)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/transport/Connector.java 2008-03-13 04:57:51 UTC (rev 3620)
@@ -339,7 +339,7 @@
{
marshallerLoaderConnector.stop();
}
- log.error("Error starting connector.", e);
+ log.debug("Error starting connector.", e);
throw e;
}
}
@@ -580,7 +580,7 @@
}
catch (Exception e)
{
- log.error("Error configuring invoker for connector.", e);
+ log.debug("Error configuring invoker for connector.", e);
throw new IllegalStateException("Error configuring invoker for connector. Can not continue without invoker.");
}
}
@@ -726,7 +726,7 @@
}
catch (Exception e)
{
- log.error("Error configuring invoker for connector.", e);
+ log.debug("Error configuring invoker for connector.", e);
throw new IllegalStateException("Error configuring invoker from configuration POJO. Can not continue without invoker.");
}
}
16 years, 9 months
JBoss Remoting SVN: r3619 - remoting2/branches/2.x/src/main/org/jboss/remoting/stream.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)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;
16 years, 9 months
JBoss Remoting SVN: r3618 - remoting2/branches/2.x/src/main/org/jboss/remoting/serialization/impl/jboss.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:56:54 -0400 (Thu, 13 Mar 2008)
New Revision: 3618
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/serialization/impl/jboss/LocalMarshalledValue.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/serialization/impl/jboss/LocalMarshalledValue.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/serialization/impl/jboss/LocalMarshalledValue.java 2008-03-13 04:56:37 UTC (rev 3617)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/serialization/impl/jboss/LocalMarshalledValue.java 2008-03-13 04:56:54 UTC (rev 3618)
@@ -89,7 +89,7 @@
}
catch(RuntimeException e)
{
- log.error(e, e);
+ log.debug(e, e);
throw e;
}
}
16 years, 9 months
JBoss Remoting SVN: r3617 - remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/http.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:56:37 -0400 (Thu, 13 Mar 2008)
New Revision: 3617
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/http/HTTPUnMarshaller.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/http/HTTPUnMarshaller.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/http/HTTPUnMarshaller.java 2008-03-13 04:56:23 UTC (rev 3616)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/http/HTTPUnMarshaller.java 2008-03-13 04:56:37 UTC (rev 3617)
@@ -186,7 +186,7 @@
}
catch(Exception e)
{
- log.error("Can not unmarshall inputstream. Tried to unmarshall as both an object and string type.", e);
+ log.debug("Can not unmarshall inputstream. Tried to unmarshall as both an object and string type.", e);
throw new IOException("Can not unmarshall inputstream.");
}
16 years, 9 months
JBoss Remoting SVN: r3616 - remoting2/branches/2.x/src/main/org/jboss/remoting/callback.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-03-13 00:56:23 -0400 (Thu, 13 Mar 2008)
New Revision: 3616
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/callback/NullCallbackStore.java
Log:
JBREM-826: Removed some log.error() calls.
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/callback/NullCallbackStore.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/callback/NullCallbackStore.java 2008-03-13 04:56:06 UTC (rev 3615)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/callback/NullCallbackStore.java 2008-03-13 04:56:23 UTC (rev 3616)
@@ -86,7 +86,7 @@
public void add(Serializable object) throws IOException
{
isCallbackLost = true;
- log.error("Lost callback because not enough free memory available. Callback lost was " + object);
+ log.debug("Lost callback because not enough free memory available. Callback lost was " + object);
throw new IOException("Callback has been lost because not enough free memory to hold object.");
}
16 years, 9 months