Return-Path: X-Original-To: apmail-struts-commits-archive@minotaur.apache.org Delivered-To: apmail-struts-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DE2C5116C0 for ; Wed, 18 Jun 2014 06:49:32 +0000 (UTC) Received: (qmail 82017 invoked by uid 500); 18 Jun 2014 06:49:22 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 81954 invoked by uid 500); 18 Jun 2014 06:49:22 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 81915 invoked by uid 99); 18 Jun 2014 06:49:22 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Jun 2014 06:49:22 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E95A283B36C; Wed, 18 Jun 2014 06:49:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: lukaszlenart@apache.org To: commits@struts.apache.org Date: Wed, 18 Jun 2014 06:49:47 -0000 Message-Id: <50c45511fc194c138d84d140b6a3d0d2@git.apache.org> In-Reply-To: <20bec4e476d24a2e80ce3caab9f07683@git.apache.org> References: <20bec4e476d24a2e80ce3caab9f07683@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [30/50] git commit: Extends logging with more information Extends logging with more information Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/833a07e7 Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/833a07e7 Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/833a07e7 Branch: refs/heads/develop Commit: 833a07e7fa1143f2a09786d561da70f144954c60 Parents: bfbc4c0 Author: Lukasz Lenart Authored: Wed May 14 08:24:03 2014 +0200 Committer: Lukasz Lenart Committed: Wed May 14 08:24:03 2014 +0200 ---------------------------------------------------------------------- .../src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStack.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/833a07e7/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStack.java ---------------------------------------------------------------------- diff --git a/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStack.java b/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStack.java index 83be3ed..1e4a576 100644 --- a/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStack.java +++ b/xwork-core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStack.java @@ -198,7 +198,7 @@ public class OgnlValueStack implements Serializable, ValueStack, ClearableValueS throw new XWorkException(message, re); } else { if (LOG.isWarnEnabled()) { - LOG.warn("Error setting value", re); + LOG.warn("Error setting value [#0] with expression [#1]", re, value.toString(), expr); } } }