Repository: cxf Updated Branches: refs/heads/3.1.x-fixes f10bfbdb5 -> 941bc949f
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/941bc949 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/941bc949 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/941bc949 Branch: refs/heads/3.1.x-fixes Commit: 941bc949fb5750e02a9e2ed8d729e2b9800edfe3 Parents: f10bfbd 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:29:29 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/941bc949/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); } }
