Return-Path: X-Original-To: apmail-logging-log4j-dev-archive@www.apache.org Delivered-To: apmail-logging-log4j-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D634A11CAE for ; Fri, 11 Jul 2014 17:50:05 +0000 (UTC) Received: (qmail 54747 invoked by uid 500); 11 Jul 2014 17:50:05 -0000 Delivered-To: apmail-logging-log4j-dev-archive@logging.apache.org Received: (qmail 54695 invoked by uid 500); 11 Jul 2014 17:50:05 -0000 Mailing-List: contact log4j-dev-help@logging.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Log4J Developers List" Reply-To: "Log4J Developers List" Delivered-To: mailing list log4j-dev@logging.apache.org Received: (qmail 54603 invoked by uid 99); 11 Jul 2014 17:50:05 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jul 2014 17:50:05 +0000 Date: Fri, 11 Jul 2014 17:50:05 +0000 (UTC) From: "Remko Popma (JIRA)" To: log4j-dev@logging.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (LOG4J2-631) Update docs to clarify how to use formatter logger and standard logger together MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LOG4J2-631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Remko Popma resolved LOG4J2-631. -------------------------------- Resolution: Fixed Fixed in revision 1609755. Please verify and close. > Update docs to clarify how to use formatter logger and standard logger together > ------------------------------------------------------------------------------- > > Key: LOG4J2-631 > URL: https://issues.apache.org/jira/browse/LOG4J2-631 > Project: Log4j 2 > Issue Type: Bug > Components: Documentation > Affects Versions: 2.0-rc1 > Reporter: Alexandre Gattiker > Assignee: Remko Popma > Fix For: 2.0 > > > {code} > public class Example { > private final static Logger FORMATTER_LOGGER = LogManager.getFormatterLogger(Example.class); > private final static Logger LOGGER = LogManager.getLogger(Example.class); > public static void main(String[] args) { > LOGGER.log(ERROR, "{} happened", "Something"); > FORMATTER_LOGGER.log(ERROR, "%s happened", "Something"); > } > } > {code} > {noformat} > 13:40:35.401 [main] ERROR com.example.Example - {} happened > 13:40:35.404 [main] ERROR com.example.Example - Something happened > {noformat} > After inverting the two constant declarations: > {noformat} > 13:41:13.730 [main] ERROR com.example.Example - Something happened > 13:41:13.732 [main] ERROR com.example.Example - %s happened > {noformat} -- This message was sent by Atlassian JIRA (v6.2#6252) --------------------------------------------------------------------- To unsubscribe, e-mail: log4j-dev-unsubscribe@logging.apache.org For additional commands, e-mail: log4j-dev-help@logging.apache.org