Repository: cxf Updated Branches: refs/heads/3.0.x-fixes cb0d7506c -> 8858a63be
Updating LOG message Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/1e83ecab Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/1e83ecab Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/1e83ecab Branch: refs/heads/3.0.x-fixes Commit: 1e83ecab0beecd2276f95149ff6502354cbfa3b7 Parents: cb0d750 Author: Colm O hEigeartaigh <[email protected]> Authored: Fri Jan 15 16:28:04 2016 +0000 Committer: Colm O hEigeartaigh <[email protected]> Committed: Fri Jan 15 16:44:31 2016 +0000 ---------------------------------------------------------------------- .../apache/cxf/ws/security/policy/WSSecurityPolicyLoader.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/1e83ecab/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/WSSecurityPolicyLoader.java ---------------------------------------------------------------------- diff --git a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/WSSecurityPolicyLoader.java b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/WSSecurityPolicyLoader.java index 8b05935..5f2c1e9 100644 --- a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/WSSecurityPolicyLoader.java +++ b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/policy/WSSecurityPolicyLoader.java @@ -111,7 +111,9 @@ public final class WSSecurityPolicyLoader implements PolicyInterceptorProviderLo //as the policy framework will then not find the providers //and error out at that point. If nothing uses ws-securitypolicy //no warnings/errors will display - LOG.log(Level.FINE, "Could not load or register WS-SecurityPolicy related classes.", t); + String error = "Could not load or register WS-SecurityPolicy related classes. " + + "Please check that (the correct version of) Apache WSS4J is on the classpath"; + LOG.log(Level.FINE, error, t); } }
