Return-Path: X-Original-To: apmail-logging-commits-archive@minotaur.apache.org Delivered-To: apmail-logging-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 B3B6C10C17 for ; Sun, 5 Jan 2014 11:41:36 +0000 (UTC) Received: (qmail 76255 invoked by uid 500); 5 Jan 2014 11:41:34 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 76242 invoked by uid 500); 5 Jan 2014 11:41:32 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 76234 invoked by uid 99); 5 Jan 2014 11:41:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Jan 2014 11:41:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Jan 2014 11:41:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5FD4723888FE; Sun, 5 Jan 2014 11:41:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1555484 - in /logging/log4j/log4j2/trunk/src: changes/changes.xml site/xdoc/manual/eventlogging.xml Date: Sun, 05 Jan 2014 11:41:10 -0000 To: commits@logging.apache.org From: rpopma@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140105114110.5FD4723888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rpopma Date: Sun Jan 5 11:41:09 2014 New Revision: 1555484 URL: http://svn.apache.org/r1555484 Log: LOG4J2-408 Fixed error in code example in manual/eventlogging.html Modified: logging/log4j/log4j2/trunk/src/changes/changes.xml logging/log4j/log4j2/trunk/src/site/xdoc/manual/eventlogging.xml Modified: logging/log4j/log4j2/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/src/changes/changes.xml?rev=1555484&r1=1555483&r2=1555484&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/src/changes/changes.xml (original) +++ logging/log4j/log4j2/trunk/src/changes/changes.xml Sun Jan 5 11:41:09 2014 @@ -21,6 +21,9 @@ + + Fixed error in documentation code example in manual/eventlogging.html + Fixed typo in documentation: system property should be log4j2.loggerContextFactory Modified: logging/log4j/log4j2/trunk/src/site/xdoc/manual/eventlogging.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/src/site/xdoc/manual/eventlogging.xml?rev=1555484&r1=1555483&r2=1555484&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/src/site/xdoc/manual/eventlogging.xml (original) +++ logging/log4j/log4j2/trunk/src/site/xdoc/manual/eventlogging.xml Sun Jan 5 11:41:09 2014 @@ -128,7 +128,7 @@ public class MyApp { msg.put("toAccount", toAccount); msg.put("fromAccount", fromAccount); msg.put("amount", amount); - EventLogger.logEvent(data); + EventLogger.logEvent(msg); return confirm; } }