Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A345418ECA for ; Fri, 15 Jan 2016 16:28:22 +0000 (UTC) Received: (qmail 55515 invoked by uid 500); 15 Jan 2016 16:28:22 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 55455 invoked by uid 500); 15 Jan 2016 16:28:21 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 55446 invoked by uid 99); 15 Jan 2016 16:28:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Jan 2016 16:28:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AD5AFE042F; Fri, 15 Jan 2016 16:28:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: coheigea@apache.org To: commits@cxf.apache.org Message-Id: <7618da8ee6c44199b1edc1cc4bab7a47@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: Updating LOG message Date: Fri, 15 Jan 2016 16:28:21 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/master 6ec4feb8a -> 5d45660c4 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/5d45660c Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/5d45660c Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/5d45660c Branch: refs/heads/master Commit: 5d45660c4081fff3b8060907c0df3b334633641a Parents: 6ec4feb Author: Colm O hEigeartaigh Authored: Fri Jan 15 16:28:04 2016 +0000 Committer: Colm O hEigeartaigh Committed: Fri Jan 15 16:28:18 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/5d45660c/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); } }