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 A7F17117D7 for ; Fri, 27 Jun 2014 11:23:39 +0000 (UTC) Received: (qmail 95822 invoked by uid 500); 27 Jun 2014 11:23:37 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 95757 invoked by uid 500); 27 Jun 2014 11:23:37 -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 95648 invoked by uid 99); 27 Jun 2014 11:23:37 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Jun 2014 11:23:37 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6A51598D6C8; Fri, 27 Jun 2014 11:23:36 +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: Fri, 27 Jun 2014 11:23:56 -0000 Message-Id: <2c86bb3291d94e94ba9325020071c165@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [28/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/feature/WW-4295-localization 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); } } }