This is an automated email from the ASF dual-hosted git repository.
rgoers pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/master by this push:
new 22a96e3 LOG4J2-3166 - Fix log event Level vs LoggerConfig Level table.
22a96e3 is described below
commit 22a96e36e111c5f24798e36c236121093a8baa9e
Author: Ralph Goers <[email protected]>
AuthorDate: Sun Dec 5 20:46:33 2021 -0700
LOG4J2-3166 - Fix log event Level vs LoggerConfig Level table.
---
src/changes/changes.xml | 3 +++
src/site/asciidoc/manual/architecture.adoc | 4 ++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a7007d2..fbb0196 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -252,6 +252,9 @@
based on performance improvements in modern Java releases.
</action>
<!-- FIXES -->
+ <action issue="LOG4J2-3166" dev="rgoers">
+ Fix Log Event Level vs Logger Config Level table.
+ </action>
<action issue="LOG4J2-2540" dev="rgoers">
Minor documentation correctsion regarding log levels.
</action>
diff --git a/src/site/asciidoc/manual/architecture.adoc
b/src/site/asciidoc/manual/architecture.adoc
index af14611..adc74dc 100644
--- a/src/site/asciidoc/manual/architecture.adoc
+++ b/src/site/asciidoc/manual/architecture.adoc
@@ -292,7 +292,7 @@ for further processing (Yes) or discarded (No).
| |`TRACE` |`DEBUG` |`INFO` |`WARN` |`ERROR` |`FATAL` |`OFF`
-|`ALL` |✅ |✅ |✅ |✅ |✅ |✅ |❌
+|`ALL` |❌ |❌ |❌ |❌ |❌ |❌ |❌
|`TRACE` |✅ |❌ |❌ |❌ |❌ |❌ |❌
@@ -306,7 +306,7 @@ for further processing (Yes) or discarded (No).
|`FATAL` |✅ |✅ |✅ |✅ |✅ |✅ |❌
-|`OFF` |❌ |❌ |❌ |❌ |❌ |❌ |❌
+|`OFF` |✅ |✅ |✅ |✅ |✅ |✅ |✅
|===
=== Filter