问题描述
我正在使用log4j2以及以下依赖项:
Im using log4j2 with following dependencies:
<!-- LOG4J2 -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.0-rc1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.0-rc1</version>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>3.0.1</version>
</dependency>
Log4j2.xml内容:
Log4j2.xml content:
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="OFF">
<Appenders>
<Console name="CONSOLE" target="SYSTEM_OUT">
<PatternLayout pattern="%d %-5p [%t] %C{2} (%F:%L) - %m%n" />
</Console>
<!-- Generate rolling log for router with per hour interval policy -->
<RollingFile name="ProcessorRollingFile" fileName="D:/ocsprocessor.log"
filePattern="D:/ocsprocessor.log.%d{MM-dd-yyyy}-%i.log">
<PatternLayout>
<pattern>%d{ISO8601} [%t] %p %c %L - %m%n</pattern>
</PatternLayout>
<Policies>
<TimeBasedTriggeringPolicy interval="1" />
</Policies>
<DefaultRolloverStrategy max="24" />
</RollingFile>
<!-- Register Async appender -->
<Async name="AsyncRollingFile">
<AppenderRef ref="ProcessorRollingFile" />
</Async>
</Appenders>
<Loggers>
<AsyncLogger name="com.tritronik.logger.log4j2" level="error"
additivity="false">
<AppenderRef ref="AsyncRollingFile" />
</AsyncLogger>
</Loggers>
</Configuration>
事实证明一切正常,除了日志没有显示投掷记录器的行号(%)模式中的L。
Turn out that everything went fine except the log doesn't show Line number of throwed logger (the %L in pattern).
我用Google搜索并发现对于异步记录器和滚动文件appender,没有人提到使用%L,那么我怎么能实现呢?或者它不支持%L?
I googled and found out that for async logger and rolling file appender, there is no one mentioned using %L, so how can i achieved it then? Or is it doesn't support %L?
编辑:我尝试添加 includeLocation =true ,但结果仍然相同
I have tried added includeLocation="true", but still same results
2014-05-23 11:42:40,368 [threadPoolTaskExecutor-5] ERROR (AsyncLogger:) - THIS IS TEST MESSAGE FOR LOGGING TEST PURPOSE
谢谢
推荐答案
首先,删除Async appender,并将AsyncLogger的appender-ref直接指向ProcessorLoggingFile。其次,您必须在AsyncLogger上添加includeLocation =true。
First, remove the Async appender, and point the appender-ref of the AsyncLogger to the ProcessorLoggingFile directly. Second, you must add includeLocation="true" on the AsyncLogger.
除了异步记录器之外还有一个异步appender没有帮助,在这种情况下可能会阻止includeLocation正常工作。
Having an async appender in addition to an async logger does not help and in this case might be what prevents the includeLocation from working correctly.
这篇关于Log4j2 AsyncLogger,滚动文件appender没有显示文件行号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!