Author: ron.sigal(a)jboss.com
Date: 2008-02-25 20:38:29 -0500 (Mon, 25 Feb 2008)
New Revision: 3507
Modified:
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/http/ssl/HTTPSClientInvoker.java
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketClientInvoker.java
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketServerInvoker.java
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslsocket/SSLSocketClientInvoker.java
Log:
JBREM-912: Logs stack trace at DEBUG level.
Modified:
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/http/ssl/HTTPSClientInvoker.java
===================================================================
---
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/http/ssl/HTTPSClientInvoker.java 2008-02-26
01:37:17 UTC (rev 3506)
+++
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/http/ssl/HTTPSClientInvoker.java 2008-02-26
01:38:29 UTC (rev 3507)
@@ -141,7 +141,9 @@
}
catch (Exception e)
{
- log.error("Error creating SSL Socket Factory for client invoker.",
e);
+ log.error("Error creating SSL Socket Factory for client invoker: " +
e.getMessage());
+ log.debug("Error creating SSL Socket Factory for client invoker.",
e);
+
}
if (wrapper != null)
Modified:
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketClientInvoker.java
===================================================================
---
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketClientInvoker.java 2008-02-26
01:37:17 UTC (rev 3506)
+++
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketClientInvoker.java 2008-02-26
01:38:29 UTC (rev 3507)
@@ -91,7 +91,8 @@
}
catch (Exception e)
{
- log.error("Error creating SSL Socket Factory for client invoker.",
e);
+ log.error("Error creating SSL Socket Factory for client invoker: " +
e.getMessage());
+ log.debug("Error creating SSL Socket Factory for client invoker.",
e);
}
if (wrapper != null)
Modified:
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketServerInvoker.java
===================================================================
---
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketServerInvoker.java 2008-02-26
01:37:17 UTC (rev 3506)
+++
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslbisocket/SSLBisocketServerInvoker.java 2008-02-26
01:38:29 UTC (rev 3507)
@@ -96,7 +96,8 @@
}
catch (Exception e)
{
- log.error("Error creating SSL Socket Factory for client invoker.",
e);
+ log.error("Error creating SSL Socket Factory for client invoker: " +
e.getMessage());
+ log.debug("Error creating SSL Socket Factory for client invoker.",
e);
}
if (wrapper != null)
Modified:
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslsocket/SSLSocketClientInvoker.java
===================================================================
---
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslsocket/SSLSocketClientInvoker.java 2008-02-26
01:37:17 UTC (rev 3506)
+++
remoting2/branches/2.2/src/main/org/jboss/remoting/transport/sslsocket/SSLSocketClientInvoker.java 2008-02-26
01:38:29 UTC (rev 3507)
@@ -92,7 +92,8 @@
}
catch (Exception e)
{
- log.error("Error creating SSL Socket Factory for client invoker.",
e);
+ log.error("Error creating SSL Socket Factory for client invoker: " +
e.getMessage());
+ log.debug("Error creating SSL Socket Factory for client invoker.",
e);
}
if (wrapper != null)
Show replies by date