Author: bfoster
Date: Mon Apr  7 07:50:46 2014
New Revision: 1585423

URL: http://svn.apache.org/r1585423
Log:
- Add exception to logs

Modified:
    
oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/protocol/ProtocolHandler.java

Modified: 
oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/protocol/ProtocolHandler.java
URL: 
http://svn.apache.org/viewvc/oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/protocol/ProtocolHandler.java?rev=1585423&r1=1585422&r2=1585423&view=diff
==============================================================================
--- 
oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/protocol/ProtocolHandler.java
 (original)
+++ 
oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/protocol/ProtocolHandler.java
 Mon Apr  7 07:50:46 2014
@@ -360,7 +360,7 @@ public class ProtocolHandler {
     } catch (Exception e) {
       LOG.log(Level.SEVERE, "Protocol "
           + protocol.getClass().getCanonicalName()
-          + " failed compatibility test : " + e.getMessage());
+          + " failed compatibility test : " + e.getMessage(), e);
       return false;
     }
     return true;


Reply via email to