[ 
https://issues.apache.org/jira/browse/LOG4J2-631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Remko Popma updated LOG4J2-631:
-------------------------------

      Component/s: Documentation
    Fix Version/s: 2.0
         Assignee: Remko Popma
          Summary: Update docs to clarify how to use formatter logger and 
standard logger together  (was: Cannot use formatter logger and standard logger 
with same name)

Changed title to reflect the remaining task.

> 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-unsubscr...@logging.apache.org
For additional commands, e-mail: log4j-dev-h...@logging.apache.org

Reply via email to