You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-dev@logging.apache.org by "Remko Popma (JIRA)" <ji...@apache.org> on 2013/11/03 15:05:17 UTC

[jira] [Resolved] (LOG4J2-429) Class name and file number not filled with Async appender

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

Remko Popma resolved LOG4J2-429.
--------------------------------

    Resolution: Not A Problem
      Assignee: Remko Popma

Hemri, I assume that you were able to get location info to work with a configuration change so I'm going to mark this ticket as resolved.

Can you close this ticket if everything worked as expected, or re-open if you had any problem? Thanks!

> Class name and file number not filled with Async appender
> ---------------------------------------------------------
>
>                 Key: LOG4J2-429
>                 URL: https://issues.apache.org/jira/browse/LOG4J2-429
>             Project: Log4j 2
>          Issue Type: Bug
>    Affects Versions: 2.0-beta9
>            Reporter: Hemri
>            Assignee: Remko Popma
>
> Hi everyone,
> I found an annoying issue with async appender, with this configuration:
> {code}
> <?xml version="1.0" encoding="UTF-8"?>
> <Configuration>
> 	<Appenders>
> 		<Console name="CONSOLE" target="SYSTEM_OUT">
> 			<PatternLayout pattern="%d %p %c{1.} [%t] (%F: %L) %m%n" />
> 		</Console>
> 		<Async name="ASYNC">
> 			<AppenderRef ref="CONSOLE" />
> 		</Async>
> 	</Appenders>
> 	<Loggers>
> 		<Root level="debug">
> 			<AppenderRef ref="ASYNC" />
> 		</Root>
> 	</Loggers>
> </Configuration>
> {code}
> I got this log:
> 2013-10-16 11:43:19,033 WARN Foo [main] (: ) Debug message
> And without async:
> {code}
> <?xml version="1.0" encoding="UTF-8"?>
> <Configuration>
> 	<Appenders>
> 		<Console name="CONSOLE" target="SYSTEM_OUT">
> 			<PatternLayout pattern="%d %p %c{1.} [%t] (%F:%L) %m%n" />
> 		</Console>
> 	</Appenders>
> 	<Loggers>
> 		<Root level="debug">
> 			<AppenderRef ref="CONSOLE" />
> 		</Root>
> 	</Loggers>
> </Configuration>
> {code}
> I got this log:
> 2013-10-16 11:44:16,599 WARN Toto [main] (Toto.java:12) toto
> Is it normal that class name and line number are not filled with async appender?
> Thanks



--
This message was sent by Atlassian JIRA
(v6.1#6144)

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscribe@logging.apache.org
For additional commands, e-mail: log4j-dev-help@logging.apache.org