You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ck...@apache.org on 2019/12/30 18:55:57 UTC

[logging-log4j2] branch release-2.x updated: Fix log4j2-perf-file-throwable.xml async logger configuration

This is an automated email from the ASF dual-hosted git repository.

ckozak pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/release-2.x by this push:
     new 6cfe6f9  Fix log4j2-perf-file-throwable.xml async logger configuration
6cfe6f9 is described below

commit 6cfe6f9b199d9e7e2f9f673f15e7c8c61fe1a845
Author: Carter Kozak <ck...@ckozak.net>
AuthorDate: Mon Dec 30 13:54:50 2019 -0500

    Fix log4j2-perf-file-throwable.xml async logger configuration
    
    Only one of the two "async" loggers was using the correct
    "AsyncLogger" type.
---
 log4j-perf/src/main/resources/log4j2-perf-file-throwable.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/log4j-perf/src/main/resources/log4j2-perf-file-throwable.xml b/log4j-perf/src/main/resources/log4j2-perf-file-throwable.xml
index fdf3ba5..c55b2ae 100644
--- a/log4j-perf/src/main/resources/log4j2-perf-file-throwable.xml
+++ b/log4j-perf/src/main/resources/log4j2-perf-file-throwable.xml
@@ -33,9 +33,9 @@
         <Logger name="RAFExtendedException" level="debug" additivity="false">
             <AppenderRef ref="RAFExtendedException"/>
         </Logger>
-        <Logger name="async.RAFExtendedException" level="debug" additivity="false">
+        <AsyncLogger name="async.RAFExtendedException" level="debug" additivity="false">
             <AppenderRef ref="RAFExtendedException"/>
-        </Logger>
+        </AsyncLogger>
         <Logger name="RAFSimpleException" level="debug" additivity="false">
             <AppenderRef ref="RAFSimpleException"/>
         </Logger>