You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2016/05/23 17:47:16 UTC

[03/11] cxf git commit: #CXF-6859: improved logging message

#CXF-6859: improved logging message


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/ab0393e1
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/ab0393e1
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/ab0393e1

Branch: refs/heads/3.1.x-fixes
Commit: ab0393e171b256c41043f192eb7c2c13928be670
Parents: 1f745e1
Author: Andrei Shakirin <an...@gmail.com>
Authored: Tue Apr 12 21:19:50 2016 +0200
Committer: Daniel Kulp <dk...@apache.org>
Committed: Mon May 23 13:07:00 2016 -0400

----------------------------------------------------------------------
 .../apache/cxf/ws/security/trust/STSSamlAssertionValidator.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/ab0393e1/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSSamlAssertionValidator.java
----------------------------------------------------------------------
diff --git a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSSamlAssertionValidator.java b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSSamlAssertionValidator.java
index 33236e3..da107be 100644
--- a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSSamlAssertionValidator.java
+++ b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSSamlAssertionValidator.java
@@ -69,7 +69,8 @@ public class STSSamlAssertionValidator extends SamlAssertionValidator {
             trustVerificationSucceeded = true;
             return credential;
         } catch (WSSecurityException ex) {
-            LOG.log(Level.WARNING, "Trust verification of SAML assertion failed: " + ex.getMessage(), ex);
+            LOG.log(Level.WARNING, "Local trust verification of SAML assertion failed: " + ex.getMessage(),
+                    ex);
             trustVerificationSucceeded = false;
             return null;
         }