Constant Field Values

Contents

org.apache.*

  • org.apache.log4j.layout.Log4j1XmlLayout
    Modifier and Type
    Constant Field
    Value
    private static final String
    "\r\n"
  • org.apache.logging.log4j.core.appender.db.jdbc.org.apache.logging.log4j.core.appender.db.jdbc.JdbcDatabaseManager.JdbcDatabaseManagerFactory
    Modifier and Type
    Constant Field
    Value
    private static final char
    '?'
  • org.apache.logging.log4j.core.appender.rolling.CronTriggeringPolicy
    Modifier and Type
    Constant Field
    Value
    private static final String
    "0 0 0 * * ?"
  • org.apache.logging.log4j.core.appender.rolling.DefaultRolloverStrategy
    Modifier and Type
    Constant Field
    Value
    private static final int
    7
    private static final int
    1
  • org.apache.logging.log4j.core.appender.rolling.DirectWriteRolloverStrategy
    Modifier and Type
    Constant Field
    Value
    private static final int
    7
  • org.apache.logging.log4j.core.appender.rolling.FileSize
    Modifier and Type
    Constant Field
    Value
    private static final long
    1073741824L
    private static final long
    1024L
    private static final long
    1048576L
    private static final long
    1099511627776L
  • org.apache.logging.log4j.core.appender.rolling.PatternProcessor
    Modifier and Type
    Constant Field
    Value
    private static final String
    "FileConverter"
    private static final char
    'S'
    private static final char
    'm'
    private static final char
    'M'
    private static final char
    's'
    private static final char
    'y'
  • org.apache.logging.log4j.core.appender.rolling.RollingFileManager
    Modifier and Type
    Constant Field
    Value
    private static final int
    3
    private static final int
    100
  • org.apache.logging.log4j.core.appender.rolling.org.apache.logging.log4j.core.appender.rolling.RollingFileManager.EmptyQueue
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.core.appender.rolling.RollingRandomAccessFileManager
    Modifier and Type
    Constant Field
    Value
    public static final int
    262144
  • org.apache.logging.log4j.core.appender.rolling.SizeBasedTriggeringPolicy
    Modifier and Type
    Constant Field
    Value
    private static final long
    10485760L
  • org.apache.logging.log4j.core.config.plugins.Plugin
    Modifier and Type
    Constant Field
    Value
    public static final String
    ""
  • org.apache.logging.log4j.core.config.plugins.processor.PluginEntry
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.core.config.plugins.processor.PluginProcessor
    Modifier and Type
    Constant Field
    Value
    public static final String
    "META-INF/org/apache/logging/log4j/core/config/plugins/Log4j2Plugins.dat"
  • org.apache.logging.log4j.core.parser.ParseException
    Modifier and Type
    Constant Field
    Value
    private static final long
    -2739649998196663857L
  • org.apache.logging.log4j.core.tools.Generate
    Modifier and Type
    Constant Field
    Value
    static final String
    "%n /**%n * Returns a custom Logger with the name of the calling class.%n * %n * @return The custom Logger for the calling class.%n */%n public static CLASSNAME create() {%n final Logger wrapped = LogManager.getLogger();%n return new CLASSNAME(wrapped);%n }%n%n /**%n * Returns a custom Logger using the fully qualified name of the Class as%n * the Logger name.%n * %n * @param loggerName The Class whose name should be used as the Logger name.%n * If null it will default to the calling class.%n * @return The custom Logger.%n */%n public static CLASSNAME create(final Class<?> loggerName) {%n final Logger wrapped = LogManager.getLogger(loggerName);%n return new CLASSNAME(wrapped);%n }%n%n /**%n * Returns a custom Logger using the fully qualified name of the Class as%n * the Logger name.%n * %n * @param loggerName The Class whose name should be used as the Logger name.%n * If null it will default to the calling class.%n * @param messageFactory The message factory is used only when creating a%n * logger, subsequent use does not change the logger but will log%n * a warning if mismatched.%n * @return The custom Logger.%n */%n public static CLASSNAME create(final Class<?> loggerName, final MessageFactory messageFactory) {%n final Logger wrapped = LogManager.getLogger(loggerName, messageFactory);%n return new CLASSNAME(wrapped);%n }%n%n /**%n * Returns a custom Logger using the fully qualified class name of the value%n * as the Logger name.%n * %n * @param value The value whose class name should be used as the Logger%n * name. If null the name of the calling class will be used as%n * the logger name.%n * @return The custom Logger.%n */%n public static CLASSNAME create(final Object value) {%n final Logger wrapped = LogManager.getLogger(value);%n return new CLASSNAME(wrapped);%n }%n%n /**%n * Returns a custom Logger using the fully qualified class name of the value%n * as the Logger name.%n * %n * @param value The value whose class name should be used as the Logger%n * name. If null the name of the calling class will be used as%n * the logger name.%n * @param messageFactory The message factory is used only when creating a%n * logger, subsequent use does not change the logger but will log%n * a warning if mismatched.%n * @return The custom Logger.%n */%n public static CLASSNAME create(final Object value, final MessageFactory messageFactory) {%n final Logger wrapped = LogManager.getLogger(value, messageFactory);%n return new CLASSNAME(wrapped);%n }%n%n /**%n * Returns a custom Logger with the specified name.%n * %n * @param name The logger name. If null the name of the calling class will%n * be used.%n * @return The custom Logger.%n */%n public static CLASSNAME create(final String name) {%n final Logger wrapped = LogManager.getLogger(name);%n return new CLASSNAME(wrapped);%n }%n%n /**%n * Returns a custom Logger with the specified name.%n * %n * @param name The logger name. If null the name of the calling class will%n * be used.%n * @param messageFactory The message factory is used only when creating a%n * logger, subsequent use does not change the logger but will log%n * a warning if mismatched.%n * @return The custom Logger.%n */%n public static CLASSNAME create(final String name, final MessageFactory messageFactory) {%n final Logger wrapped = LogManager.getLogger(name, messageFactory);%n return new CLASSNAME(wrapped);%n }%n"
    static final String
    " private static final String FQCN = %s.class.getName();%n"
    static final String
    " private static final Level %s = Level.forName(\"%s\", %d);%n"
    static final String
    "%n /**%n * Logs a message with the specific Marker at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param msg the message string to be logged%n */%n public void methodName(final Marker marker, final Message msg) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, msg, (Throwable) null);%n }%n%n /**%n * Logs a message with the specific Marker at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param msg the message string to be logged%n * @param t A Throwable or null.%n */%n public void methodName(final Marker marker, final Message msg, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, msg, t);%n }%n%n /**%n * Logs a message object with the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message object to log.%n */%n public void methodName(final Marker marker, final Object message) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, (Throwable) null);%n }%n%n /**%n * Logs a message CharSequence with the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message CharSequence to log.%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final CharSequence message) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, (Throwable) null);%n }%n%n /**%n * Logs a message at the {@code CUSTOM_LEVEL} level including the stack trace of%n * the {@link Throwable} {@code t} passed as parameter.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log.%n * @param t the exception to log, including its stack trace.%n */%n public void methodName(final Marker marker, final Object message, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, t);%n }%n%n /**%n * Logs a message at the {@code CUSTOM_LEVEL} level including the stack trace of%n * the {@link Throwable} {@code t} passed as parameter.%n * %n * @param marker the marker data specific to this log statement%n * @param message the CharSequence to log.%n * @param t the exception to log, including its stack trace.%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final CharSequence message, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, t);%n }%n%n /**%n * Logs a message object with the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message object to log.%n */%n public void methodName(final Marker marker, final String message) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, (Throwable) null);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param params parameters to the message.%n * @see #getMessageFactory()%n */%n public void methodName(final Marker marker, final String message, final Object... params) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, params);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1, final Object p2) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1, p2);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1, final Object p2,%n final Object p3) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1, p2, p3);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1, p2, p3, p4);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1, p2, p3, p4, p5);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @param p6 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5, final Object p6) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1, p2, p3, p4, p5, p6);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @param p6 parameter to the message.%n * @param p7 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5, final Object p6,%n final Object p7) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1, p2, p3, p4, p5, p6, p7);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @param p6 parameter to the message.%n * @param p7 parameter to the message.%n * @param p8 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5, final Object p6,%n final Object p7, final Object p8) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1, p2, p3, p4, p5, p6, p7, p8);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @param p6 parameter to the message.%n * @param p7 parameter to the message.%n * @param p8 parameter to the message.%n * @param p9 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final Marker marker, final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5, final Object p6,%n final Object p7, final Object p8, final Object p9) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9);%n }%n%n /**%n * Logs a message at the {@code CUSTOM_LEVEL} level including the stack trace of%n * the {@link Throwable} {@code t} passed as parameter.%n * %n * @param marker the marker data specific to this log statement%n * @param message the message to log.%n * @param t the exception to log, including its stack trace.%n */%n public void methodName(final Marker marker, final String message, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, t);%n }%n%n /**%n * Logs the specified Message at the {@code CUSTOM_LEVEL} level.%n * %n * @param msg the message string to be logged%n */%n public void methodName(final Message msg) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, msg, (Throwable) null);%n }%n%n /**%n * Logs the specified Message at the {@code CUSTOM_LEVEL} level.%n * %n * @param msg the message string to be logged%n * @param t A Throwable or null.%n */%n public void methodName(final Message msg, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, msg, t);%n }%n%n /**%n * Logs a message object with the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message object to log.%n */%n public void methodName(final Object message) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, (Throwable) null);%n }%n%n /**%n * Logs a message at the {@code CUSTOM_LEVEL} level including the stack trace of%n * the {@link Throwable} {@code t} passed as parameter.%n * %n * @param message the message to log.%n * @param t the exception to log, including its stack trace.%n */%n public void methodName(final Object message, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, t);%n }%n%n /**%n * Logs a message CharSequence with the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message CharSequence to log.%n * @since Log4j-2.6%n */%n public void methodName(final CharSequence message) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, (Throwable) null);%n }%n%n /**%n * Logs a CharSequence at the {@code CUSTOM_LEVEL} level including the stack trace of%n * the {@link Throwable} {@code t} passed as parameter.%n * %n * @param message the CharSequence to log.%n * @param t the exception to log, including its stack trace.%n * @since Log4j-2.6%n */%n public void methodName(final CharSequence message, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, t);%n }%n%n /**%n * Logs a message object with the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message object to log.%n */%n public void methodName(final String message) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, (Throwable) null);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param params parameters to the message.%n * @see #getMessageFactory()%n */%n public void methodName(final String message, final Object... params) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, params);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1, final Object p2) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1, p2);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1, final Object p2,%n final Object p3) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1, p2, p3);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1, p2, p3, p4);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1, p2, p3, p4, p5);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @param p6 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5, final Object p6) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1, p2, p3, p4, p5, p6);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @param p6 parameter to the message.%n * @param p7 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5, final Object p6,%n final Object p7) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1, p2, p3, p4, p5, p6, p7);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @param p6 parameter to the message.%n * @param p7 parameter to the message.%n * @param p8 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5, final Object p6,%n final Object p7, final Object p8) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1, p2, p3, p4, p5, p6, p7, p8);%n }%n%n /**%n * Logs a message with parameters at the {@code CUSTOM_LEVEL} level.%n * %n * @param message the message to log; the format depends on the message factory.%n * @param p0 parameter to the message.%n * @param p1 parameter to the message.%n * @param p2 parameter to the message.%n * @param p3 parameter to the message.%n * @param p4 parameter to the message.%n * @param p5 parameter to the message.%n * @param p6 parameter to the message.%n * @param p7 parameter to the message.%n * @param p8 parameter to the message.%n * @param p9 parameter to the message.%n * @see #getMessageFactory()%n * @since Log4j-2.6%n */%n public void methodName(final String message, final Object p0, final Object p1, final Object p2,%n final Object p3, final Object p4, final Object p5, final Object p6,%n final Object p7, final Object p8, final Object p9) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9);%n }%n%n /**%n * Logs a message at the {@code CUSTOM_LEVEL} level including the stack trace of%n * the {@link Throwable} {@code t} passed as parameter.%n * %n * @param message the message to log.%n * @param t the exception to log, including its stack trace.%n */%n public void methodName(final String message, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, t);%n }%n%n /**%n * Logs a message which is only to be constructed if the logging level is the {@code CUSTOM_LEVEL}level.%n *%n * @param msgSupplier A function, which when called, produces the desired log message;%n * the format depends on the message factory.%n * @since Log4j-2.4%n */%n public void methodName(final Supplier<?> msgSupplier) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, msgSupplier, (Throwable) null);%n }%n%n /**%n * Logs a message (only to be constructed if the logging level is the {@code CUSTOM_LEVEL}%n * level) including the stack trace of the {@link Throwable} <code>t</code> passed as parameter.%n *%n * @param msgSupplier A function, which when called, produces the desired log message;%n * the format depends on the message factory.%n * @param t the exception to log, including its stack trace.%n * @since Log4j-2.4%n */%n public void methodName(final Supplier<?> msgSupplier, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, msgSupplier, t);%n }%n%n /**%n * Logs a message which is only to be constructed if the logging level is the%n * {@code CUSTOM_LEVEL} level with the specified Marker.%n *%n * @param marker the marker data specific to this log statement%n * @param msgSupplier A function, which when called, produces the desired log message;%n * the format depends on the message factory.%n * @since Log4j-2.4%n */%n public void methodName(final Marker marker, final Supplier<?> msgSupplier) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, msgSupplier, (Throwable) null);%n }%n%n /**%n * Logs a message with parameters which are only to be constructed if the logging level is the%n * {@code CUSTOM_LEVEL} level.%n *%n * @param marker the marker data specific to this log statement%n * @param message the message to log; the format depends on the message factory.%n * @param paramSuppliers An array of functions, which when called, produce the desired log message parameters.%n * @since Log4j-2.4%n */%n public void methodName(final Marker marker, final String message, final Supplier<?>... paramSuppliers) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, message, paramSuppliers);%n }%n%n /**%n * Logs a message (only to be constructed if the logging level is the {@code CUSTOM_LEVEL}%n * level) with the specified Marker and including the stack trace of the {@link Throwable}%n * <code>t</code> passed as parameter.%n *%n * @param marker the marker data specific to this log statement%n * @param msgSupplier A function, which when called, produces the desired log message;%n * the format depends on the message factory.%n * @param t A Throwable or null.%n * @since Log4j-2.4%n */%n public void methodName(final Marker marker, final Supplier<?> msgSupplier, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, msgSupplier, t);%n }%n%n /**%n * Logs a message with parameters which are only to be constructed if the logging level is%n * the {@code CUSTOM_LEVEL} level.%n *%n * @param message the message to log; the format depends on the message factory.%n * @param paramSuppliers An array of functions, which when called, produce the desired log message parameters.%n * @since Log4j-2.4%n */%n public void methodName(final String message, final Supplier<?>... paramSuppliers) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, message, paramSuppliers);%n }%n%n /**%n * Logs a message which is only to be constructed if the logging level is the%n * {@code CUSTOM_LEVEL} level with the specified Marker. The {@code MessageSupplier} may or may%n * not use the {@link MessageFactory} to construct the {@code Message}.%n *%n * @param marker the marker data specific to this log statement%n * @param msgSupplier A function, which when called, produces the desired log message.%n * @since Log4j-2.4%n */%n public void methodName(final Marker marker, final MessageSupplier msgSupplier) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, msgSupplier, (Throwable) null);%n }%n%n /**%n * Logs a message (only to be constructed if the logging level is the {@code CUSTOM_LEVEL}%n * level) with the specified Marker and including the stack trace of the {@link Throwable}%n * <code>t</code> passed as parameter. The {@code MessageSupplier} may or may not use the%n * {@link MessageFactory} to construct the {@code Message}.%n *%n * @param marker the marker data specific to this log statement%n * @param msgSupplier A function, which when called, produces the desired log message.%n * @param t A Throwable or null.%n * @since Log4j-2.4%n */%n public void methodName(final Marker marker, final MessageSupplier msgSupplier, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, marker, msgSupplier, t);%n }%n%n /**%n * Logs a message which is only to be constructed if the logging level is the%n * {@code CUSTOM_LEVEL} level. The {@code MessageSupplier} may or may not use the%n * {@link MessageFactory} to construct the {@code Message}.%n *%n * @param msgSupplier A function, which when called, produces the desired log message.%n * @since Log4j-2.4%n */%n public void methodName(final MessageSupplier msgSupplier) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, msgSupplier, (Throwable) null);%n }%n%n /**%n * Logs a message (only to be constructed if the logging level is the {@code CUSTOM_LEVEL}%n * level) including the stack trace of the {@link Throwable} <code>t</code> passed as parameter.%n * The {@code MessageSupplier} may or may not use the {@link MessageFactory} to construct the%n * {@code Message}.%n *%n * @param msgSupplier A function, which when called, produces the desired log message.%n * @param t the exception to log, including its stack trace.%n * @since Log4j-2.4%n */%n public void methodName(final MessageSupplier msgSupplier, final Throwable t) {%n logger.logIfEnabled(FQCN, CUSTOM_LEVEL, null, msgSupplier, t);%n }%n"
    static final String
    "package %s;%n%n"
  • org.apache.logging.log4j.core.util.datetime.FastDateFormat
    Modifier and Type
    Constant Field
    Value
    public static final int
    0
    public static final int
    1
    public static final int
    2
    private static final long
    2L
    public static final int
    3
  • org.apache.logging.log4j.core.util.datetime.FastDateParser
    Modifier and Type
    Constant Field
    Value
    private static final long
    3L
  • org.apache.logging.log4j.core.util.datetime.org.apache.logging.log4j.core.util.datetime.FastDateParser.TimeZoneStrategy
    Modifier and Type
    Constant Field
    Value
    private static final String
    "GMT[+-]\\d{1,2}:\\d{2}"
    private static final int
    0
    private static final String
    "[+-]\\d{4}"
  • org.apache.logging.log4j.core.util.datetime.FastDatePrinter
    Modifier and Type
    Constant Field
    Value
    public static final int
    0
    public static final int
    1
    private static final int
    10
    public static final int
    2
    private static final long
    1L
    public static final int
    3
  • org.apache.logging.log4j.core.util.datetime.FixedDateFormat
    Modifier and Type
    Constant Field
    Value
    private static final char
    '\u0000'
  • org.apache.logging.log4j.core.util.datetime.FixedDateFormat.FixedFormat
    Modifier and Type
    Constant Field
    Value
    private static final String
    "SSS"
    private static final char
    'n'
  • org.apache.logging.log4j.core.util.datetime.org.apache.logging.log4j.core.util.datetime.FormatCache
    Modifier and Type
    Constant Field
    Value
    static final int
    -1
  • org.apache.logging.log4j.couchdb.CouchDbProvider
    Modifier and Type
    Constant Field
    Value
    private static final int
    80
    private static final int
    443
  • org.apache.logging.log4j.jcl.Log4jLog
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.CatchingTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.DebugTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.DumpTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.EntryTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.ErrorTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.org.apache.logging.log4j.taglib.ExceptionAwareTagSupport
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.ExitTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.FatalTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.IfEnabledTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.InfoTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.org.apache.logging.log4j.taglib.Log4jTaglibLogger
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.org.apache.logging.log4j.taglib.LoggerAwareTagSupport
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.org.apache.logging.log4j.taglib.LoggingMessageTagSupport
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.LogTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.SetLoggerTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.org.apache.logging.log4j.taglib.TagUtils
    Modifier and Type
    Constant Field
    Value
    private static final String
    "org.apache.logging.log4j.taglib.LOGGER_SCOPE_ATTRIBUTE"
  • org.apache.logging.log4j.taglib.TraceTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.taglib.WarnTag
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.tojul.org.apache.logging.log4j.tojul.JULLogger
    Modifier and Type
    Constant Field
    Value
    private static final long
    1L
  • org.apache.logging.log4j.tojul.org.apache.logging.log4j.tojul.LazyLog4jLogRecord
    Modifier and Type
    Constant Field
    Value
    private static final long
    6798134264543826471L