Class Constants
java.lang.Object
org.apache.logging.log4j.core.util.Constants
Log4j Constants.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final boolean
Kill switch for garbage-free Layout behaviour that encodes LogEvents directly intoByteBufferDestination
s without creating intermediate temporary Objects.static final boolean
Kill switch for object pooling in ThreadLocals that enables much of the LOG4J2-1270 no-GC behaviour.static final int
Default size of ByteBuffers used to encode LogEvents without allocating temporary objects.static final int
Size of CharBuffers used by text encoders.static final boolean
Supports user request LOG4J2-898 to have the option to format a message in the background thread.static final boolean
Deprecated.static final int
Initial StringBuilder size used in RingBuffer LogEvents to store the contents of reusable Messages.static final boolean
true
if we think we are running in a web container, based on the boolean value of system property "log4j2.isWebapp", or (if this system property is not set) whether thejavax.servlet.Servlet
class is present in the classpath.static final String
JNDI context name string literal.static final String
Name of the system property to use to identify the ContextSelector Class.static final String
Deprecated.since 2.24.0 useStatusLogger.DEFAULT_STATUS_LISTENER_LEVEL
instead.static final String
Name of the system property to use to identify the LogEvent factory.static final int
Maximum size of the StringBuilders used in RingBuffer LogEvents to store the contents of reusable Messages.static final int
Number of milliseconds in a second.static final String
Control which script languages are allowed, if any. -
Method Summary
-
Field Details
-
LOG4J_LOG_EVENT_FACTORY
Name of the system property to use to identify the LogEvent factory.- See Also:
-
LOG4J_CONTEXT_SELECTOR
Name of the system property to use to identify the ContextSelector Class.- See Also:
-
LOG4J_DEFAULT_STATUS_LEVEL
Deprecated.since 2.24.0 useStatusLogger.DEFAULT_STATUS_LISTENER_LEVEL
instead.Property name for the default status (internal log4j logging) level to use if not specified in configuration.- See Also:
-
JNDI_CONTEXT_NAME
JNDI context name string literal.- See Also:
-
SCRIPT_LANGUAGES
Control which script languages are allowed, if any.- See Also:
-
MILLIS_IN_SECONDS
public static final int MILLIS_IN_SECONDSNumber of milliseconds in a second.- See Also:
-
FORMAT_MESSAGES_IN_BACKGROUND
public static final boolean FORMAT_MESSAGES_IN_BACKGROUNDSupports user request LOG4J2-898 to have the option to format a message in the background thread. -
FORMAT_MESSAGES_PATTERN_DISABLE_LOOKUPS
Deprecated.no longer used, lookups are only used when%m{lookups}
is specifiedLOG4J2-3198 property which used to globally opt out of lookups in pattern layout message text, however this is the default and this property is no longer read. Deprecated in 2.15.- Since:
- 2.10
-
IS_WEB_APP
public static final boolean IS_WEB_APPtrue
if we think we are running in a web container, based on the boolean value of system property "log4j2.isWebapp", or (if this system property is not set) whether thejavax.servlet.Servlet
class is present in the classpath. -
ENABLE_THREADLOCALS
public static final boolean ENABLE_THREADLOCALSKill switch for object pooling in ThreadLocals that enables much of the LOG4J2-1270 no-GC behaviour.True
for non-web apps
, disable by setting system property "log4j2.enable.threadlocals" to "false".- Since:
- 2.6
-
ENABLE_DIRECT_ENCODERS
public static final boolean ENABLE_DIRECT_ENCODERSKill switch for garbage-free Layout behaviour that encodes LogEvents directly intoByteBufferDestination
s without creating intermediate temporary Objects.This constant is
true
by default, but can be disabled using the"log4j2.enableDirectEncoders"
system property.- Since:
- 2.6
-
INITIAL_REUSABLE_MESSAGE_SIZE
public static final int INITIAL_REUSABLE_MESSAGE_SIZEInitial StringBuilder size used in RingBuffer LogEvents to store the contents of reusable Messages.The default value is 128, users can override with system property "log4j.initialReusableMsgSize".
- Since:
- 2.6
-
MAX_REUSABLE_MESSAGE_SIZE
public static final int MAX_REUSABLE_MESSAGE_SIZEMaximum size of the StringBuilders used in RingBuffer LogEvents to store the contents of reusable Messages. After a large message has been delivered to the appenders, the StringBuilder is trimmed to this size.The default value is 518, which allows the StringBuilder to resize three times from its initial size. Users can override with system property "log4j.maxReusableMsgSize".
- Since:
- 2.6
-
ENCODER_CHAR_BUFFER_SIZE
public static final int ENCODER_CHAR_BUFFER_SIZESize of CharBuffers used by text encoders.The default value is 2048, users can override with system property "log4j.encoder.charBufferSize".
- Since:
- 2.6
-
ENCODER_BYTE_BUFFER_SIZE
public static final int ENCODER_BYTE_BUFFER_SIZEDefault size of ByteBuffers used to encode LogEvents without allocating temporary objects.The default value is 8192, users can override with system property "log4j.encoder.byteBufferSize".
- Since:
- 2.6
- See Also:
-
%m{lookups}
is specified