You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by as...@apache.org on 2016/04/12 21:20:02 UTC

cxf git commit: #CXF-6859: improved logging message

Repository: cxf
Updated Branches:
  refs/heads/master e37c00d5c -> 4851a12f9


#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/4851a12f
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/4851a12f
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/4851a12f

Branch: refs/heads/master
Commit: 4851a12f9dc99261a2c1f9a37f8936cc52dfc440
Parents: e37c00d
Author: Andrei Shakirin <an...@gmail.com>
Authored: Tue Apr 12 21:19:50 2016 +0200
Committer: Andrei Shakirin <an...@gmail.com>
Committed: Tue Apr 12 21:19:50 2016 +0200

----------------------------------------------------------------------
 .../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/4851a12f/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;
         }