ppkarwasz opened a new issue, #1458:
URL: https://github.com/apache/logging-log4j2/issues/1458

   ## Description
   
   A logging call that is not filtered out will eventually call one of these 
methods:
   
    * [`AbstractLogger#log(Level, Marker, String, StackTraceElement, Message, 
Throwable)`](https://logging.apache.org/log4j/2.x/log4j-api/apidocs/org/apache/logging/log4j/spi/AbstractLogger.html#log-org.apache.logging.log4j.Level-org.apache.logging.log4j.Marker-java.lang.String-java.lang.StackTraceElement-org.apache.logging.log4j.message.Message-java.lang.Throwable-),
    * [`Logger#logMessage(Level, Marker, String, StackTraceElement, Message, 
Throwable)`](https://logging.apache.org/log4j/2.x/log4j-api/apidocs/org/apache/logging/log4j/Logger.html#logMessage-org.apache.logging.log4j.Level-org.apache.logging.log4j.Marker-java.lang.String-java.lang.StackTraceElement-org.apache.logging.log4j.message.Message-java.lang.Throwable-):
 effectively a `final` method, a recursion-safe version of the previous one,
    * [`ExtendedLogger#logMessage(String, Level, Marker, Message, 
Throwable)`](https://logging.apache.org/log4j/2.x/log4j-api/apidocs/org/apache/logging/log4j/spi/ExtendedLogger.html#logMessage-java.lang.String-org.apache.logging.log4j.Level-org.apache.logging.log4j.Marker-org.apache.logging.log4j.message.Message-java.lang.Throwable-).
   
   `AsyncLogger` correctly computes the location, if the third method is 
called. If the first method is called with `location == null` no attempt to 
compute location occurs.
   
   ## Configuration
   
   **Version:** 2.20.0
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to