Class Log


  • public final class Log
    extends Object
    Copy of BasicLogger. Invocations of all static methods of this class are, during build time, replaced by invocations of the same methods on a generated instance of Logger.
    • Constructor Detail

      • Log

        public Log()
    • Method Detail

      • isEnabled

        public static boolean isEnabled​(org.jboss.logging.Logger.Level level)
        Check to see if the given level is enabled for this logger.
        Parameters:
        level - the level to check for
        Returns:
        true if messages may be logged at the given level, false otherwise
      • isTraceEnabled

        public static boolean isTraceEnabled()
        Check to see if the TRACE level is enabled for this logger.
        Returns:
        true if messages logged at Logger.Level.TRACE may be accepted, false otherwise
      • trace

        public static void trace​(Object message)
        Issue a log message with a level of TRACE.
        Parameters:
        message - the message
      • trace

        public static void trace​(Object message,
                                 Throwable t)
        Issue a log message and throwable with a level of TRACE.
        Parameters:
        message - the message
        t - the throwable
      • trace

        public static void trace​(String loggerFqcn,
                                 Object message,
                                 Throwable t)
        Issue a log message and throwable with a level of TRACE and a specific logger class name.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        t - the throwable
      • trace

        public static void trace​(String loggerFqcn,
                                 Object message,
                                 Object[] params,
                                 Throwable t)
        Issue a log message with parameters and a throwable with a level of TRACE.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        params - the message parameters
        t - the throwable
      • tracev

        public static void tracev​(String format,
                                  Object... params)
        Issue a log message with a level of TRACE using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        params - the parameters
      • tracev

        public static void tracev​(String format,
                                  Object param1)
        Issue a log message with a level of TRACE using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the sole parameter
      • tracev

        public static void tracev​(String format,
                                  Object param1,
                                  Object param2)
        Issue a log message with a level of TRACE using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • tracev

        public static void tracev​(String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a log message with a level of TRACE using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • tracev

        public static void tracev​(Throwable t,
                                  String format,
                                  Object... params)
        Issue a log message with a level of TRACE using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        params - the parameters
      • tracev

        public static void tracev​(Throwable t,
                                  String format,
                                  Object param1)
        Issue a log message with a level of TRACE using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the sole parameter
      • tracev

        public static void tracev​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2)
        Issue a log message with a level of TRACE using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • tracev

        public static void tracev​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a log message with a level of TRACE using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • tracef

        public static void tracef​(String format,
                                  Object... params)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        params - the parameters
      • tracef

        public static void tracef​(String format,
                                  Object param1)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the sole parameter
      • tracef

        public static void tracef​(String format,
                                  Object param1,
                                  Object param2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
      • tracef

        public static void tracef​(String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • tracef

        public static void tracef​(String format,
                                  int arg)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg - the parameter
      • tracef

        public static void tracef​(String format,
                                  int arg1,
                                  int arg2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • tracef

        public static void tracef​(String format,
                                  int arg1,
                                  Object arg2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • tracef

        public static void tracef​(String format,
                                  int arg1,
                                  int arg2,
                                  int arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(String format,
                                  int arg1,
                                  int arg2,
                                  Object arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(String format,
                                  int arg1,
                                  Object arg2,
                                  Object arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  int arg)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg - the parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  int arg1,
                                  int arg2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  int arg1,
                                  Object arg2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  int arg1,
                                  int arg2,
                                  int arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  int arg1,
                                  int arg2,
                                  Object arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  int arg1,
                                  Object arg2,
                                  Object arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(String format,
                                  long arg)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg - the parameter
      • tracef

        public static void tracef​(String format,
                                  long arg1,
                                  long arg2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • tracef

        public static void tracef​(String format,
                                  long arg1,
                                  Object arg2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • tracef

        public static void tracef​(String format,
                                  long arg1,
                                  long arg2,
                                  long arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(String format,
                                  long arg1,
                                  long arg2,
                                  Object arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(String format,
                                  long arg1,
                                  Object arg2,
                                  Object arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  long arg)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg - the parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  long arg1,
                                  long arg2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  long arg1,
                                  Object arg2)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  long arg1,
                                  long arg2,
                                  long arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  long arg1,
                                  long arg2,
                                  Object arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • tracef

        public static void tracef​(Throwable t,
                                  String format,
                                  long arg1,
                                  Object arg2,
                                  Object arg3)
        Issue a formatted log message with a level of TRACE.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • isDebugEnabled

        public static boolean isDebugEnabled()
        Check to see if the DEBUG level is enabled for this logger.
        Returns:
        true if messages logged at Logger.Level.DEBUG may be accepted, false otherwise
      • debug

        public static void debug​(Object message)
        Issue a log message with a level of DEBUG.
        Parameters:
        message - the message
      • debug

        public static void debug​(Object message,
                                 Throwable t)
        Issue a log message and throwable with a level of DEBUG.
        Parameters:
        message - the message
        t - the throwable
      • debug

        public static void debug​(String loggerFqcn,
                                 Object message,
                                 Throwable t)
        Issue a log message and throwable with a level of DEBUG and a specific logger class name.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        t - the throwable
      • debug

        public static void debug​(String loggerFqcn,
                                 Object message,
                                 Object[] params,
                                 Throwable t)
        Issue a log message with parameters and a throwable with a level of DEBUG.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        params - the message parameters
        t - the throwable
      • debugv

        public static void debugv​(String format,
                                  Object... params)
        Issue a log message with a level of DEBUG using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        params - the parameters
      • debugv

        public static void debugv​(String format,
                                  Object param1)
        Issue a log message with a level of DEBUG using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the sole parameter
      • debugv

        public static void debugv​(String format,
                                  Object param1,
                                  Object param2)
        Issue a log message with a level of DEBUG using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • debugv

        public static void debugv​(String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a log message with a level of DEBUG using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • debugv

        public static void debugv​(Throwable t,
                                  String format,
                                  Object... params)
        Issue a log message with a level of DEBUG using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        params - the parameters
      • debugv

        public static void debugv​(Throwable t,
                                  String format,
                                  Object param1)
        Issue a log message with a level of DEBUG using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the sole parameter
      • debugv

        public static void debugv​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2)
        Issue a log message with a level of DEBUG using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • debugv

        public static void debugv​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a log message with a level of DEBUG using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • debugf

        public static void debugf​(String format,
                                  Object... params)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        params - the parameters
      • debugf

        public static void debugf​(String format,
                                  Object param1)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the sole parameter
      • debugf

        public static void debugf​(String format,
                                  Object param1,
                                  Object param2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
      • debugf

        public static void debugf​(String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • debugf

        public static void debugf​(String format,
                                  int arg)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg - the parameter
      • debugf

        public static void debugf​(String format,
                                  int arg1,
                                  int arg2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • debugf

        public static void debugf​(String format,
                                  int arg1,
                                  Object arg2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • debugf

        public static void debugf​(String format,
                                  int arg1,
                                  int arg2,
                                  int arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(String format,
                                  int arg1,
                                  int arg2,
                                  Object arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(String format,
                                  int arg1,
                                  Object arg2,
                                  Object arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  int arg)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg - the parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  int arg1,
                                  int arg2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  int arg1,
                                  Object arg2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  int arg1,
                                  int arg2,
                                  int arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  int arg1,
                                  int arg2,
                                  Object arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  int arg1,
                                  Object arg2,
                                  Object arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(String format,
                                  long arg)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg - the parameter
      • debugf

        public static void debugf​(String format,
                                  long arg1,
                                  long arg2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • debugf

        public static void debugf​(String format,
                                  long arg1,
                                  Object arg2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • debugf

        public static void debugf​(String format,
                                  long arg1,
                                  long arg2,
                                  long arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(String format,
                                  long arg1,
                                  long arg2,
                                  Object arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(String format,
                                  long arg1,
                                  Object arg2,
                                  Object arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  long arg)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg - the parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  long arg1,
                                  long arg2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  long arg1,
                                  Object arg2)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  long arg1,
                                  long arg2,
                                  long arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  long arg1,
                                  long arg2,
                                  Object arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • debugf

        public static void debugf​(Throwable t,
                                  String format,
                                  long arg1,
                                  Object arg2,
                                  Object arg3)
        Issue a formatted log message with a level of DEBUG.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        arg1 - the first parameter
        arg2 - the second parameter
        arg3 - the third parameter
      • isInfoEnabled

        public static boolean isInfoEnabled()
        Check to see if the INFO level is enabled for this logger.
        Returns:
        true if messages logged at Logger.Level.INFO may be accepted, false otherwise
      • info

        public static void info​(Object message)
        Issue a log message with a level of INFO.
        Parameters:
        message - the message
      • info

        public static void info​(Object message,
                                Throwable t)
        Issue a log message and throwable with a level of INFO.
        Parameters:
        message - the message
        t - the throwable
      • info

        public static void info​(String loggerFqcn,
                                Object message,
                                Throwable t)
        Issue a log message and throwable with a level of INFO and a specific logger class name.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        t - the throwable
      • info

        public static void info​(String loggerFqcn,
                                Object message,
                                Object[] params,
                                Throwable t)
        Issue a log message with parameters and a throwable with a level of INFO.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        params - the message parameters
        t - the throwable
      • infov

        public static void infov​(String format,
                                 Object... params)
        Issue a log message with a level of INFO using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        params - the parameters
      • infov

        public static void infov​(String format,
                                 Object param1)
        Issue a log message with a level of INFO using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the sole parameter
      • infov

        public static void infov​(String format,
                                 Object param1,
                                 Object param2)
        Issue a log message with a level of INFO using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • infov

        public static void infov​(String format,
                                 Object param1,
                                 Object param2,
                                 Object param3)
        Issue a log message with a level of INFO using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • infov

        public static void infov​(Throwable t,
                                 String format,
                                 Object... params)
        Issue a log message with a level of INFO using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        params - the parameters
      • infov

        public static void infov​(Throwable t,
                                 String format,
                                 Object param1)
        Issue a log message with a level of INFO using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the sole parameter
      • infov

        public static void infov​(Throwable t,
                                 String format,
                                 Object param1,
                                 Object param2)
        Issue a log message with a level of INFO using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • infov

        public static void infov​(Throwable t,
                                 String format,
                                 Object param1,
                                 Object param2,
                                 Object param3)
        Issue a log message with a level of INFO using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • infof

        public static void infof​(String format,
                                 Object... params)
        Issue a formatted log message with a level of INFO.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        params - the parameters
      • infof

        public static void infof​(String format,
                                 Object param1)
        Issue a formatted log message with a level of INFO.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the sole parameter
      • infof

        public static void infof​(String format,
                                 Object param1,
                                 Object param2)
        Issue a formatted log message with a level of INFO.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
      • infof

        public static void infof​(String format,
                                 Object param1,
                                 Object param2,
                                 Object param3)
        Issue a formatted log message with a level of INFO.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • infof

        public static void infof​(Throwable t,
                                 String format,
                                 Object param1,
                                 Object param2)
        Issue a formatted log message with a level of INFO.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
      • infof

        public static void infof​(Throwable t,
                                 String format,
                                 Object param1,
                                 Object param2,
                                 Object param3)
        Issue a formatted log message with a level of INFO.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • warn

        public static void warn​(Object message)
        Issue a log message with a level of WARN.
        Parameters:
        message - the message
      • warn

        public static void warn​(Object message,
                                Throwable t)
        Issue a log message and throwable with a level of WARN.
        Parameters:
        message - the message
        t - the throwable
      • warn

        public static void warn​(String loggerFqcn,
                                Object message,
                                Throwable t)
        Issue a log message and throwable with a level of WARN and a specific logger class name.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        t - the throwable
      • warn

        public static void warn​(String loggerFqcn,
                                Object message,
                                Object[] params,
                                Throwable t)
        Issue a log message with parameters and a throwable with a level of WARN.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        params - the message parameters
        t - the throwable
      • warnv

        public static void warnv​(String format,
                                 Object... params)
        Issue a log message with a level of WARN using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        params - the parameters
      • warnv

        public static void warnv​(String format,
                                 Object param1)
        Issue a log message with a level of WARN using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the sole parameter
      • warnv

        public static void warnv​(String format,
                                 Object param1,
                                 Object param2)
        Issue a log message with a level of WARN using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • warnv

        public static void warnv​(String format,
                                 Object param1,
                                 Object param2,
                                 Object param3)
        Issue a log message with a level of WARN using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • warnv

        public static void warnv​(Throwable t,
                                 String format,
                                 Object... params)
        Issue a log message with a level of WARN using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        params - the parameters
      • warnv

        public static void warnv​(Throwable t,
                                 String format,
                                 Object param1)
        Issue a log message with a level of WARN using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the sole parameter
      • warnv

        public static void warnv​(Throwable t,
                                 String format,
                                 Object param1,
                                 Object param2)
        Issue a log message with a level of WARN using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • warnv

        public static void warnv​(Throwable t,
                                 String format,
                                 Object param1,
                                 Object param2,
                                 Object param3)
        Issue a log message with a level of WARN using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • warnf

        public static void warnf​(String format,
                                 Object... params)
        Issue a formatted log message with a level of WARN.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        params - the parameters
      • warnf

        public static void warnf​(String format,
                                 Object param1)
        Issue a formatted log message with a level of WARN.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the sole parameter
      • warnf

        public static void warnf​(String format,
                                 Object param1,
                                 Object param2)
        Issue a formatted log message with a level of WARN.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
      • warnf

        public static void warnf​(String format,
                                 Object param1,
                                 Object param2,
                                 Object param3)
        Issue a formatted log message with a level of WARN.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • warnf

        public static void warnf​(Throwable t,
                                 String format,
                                 Object param1,
                                 Object param2)
        Issue a formatted log message with a level of WARN.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
      • warnf

        public static void warnf​(Throwable t,
                                 String format,
                                 Object param1,
                                 Object param2,
                                 Object param3)
        Issue a formatted log message with a level of WARN.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • error

        public static void error​(Object message)
        Issue a log message with a level of ERROR.
        Parameters:
        message - the message
      • error

        public static void error​(Object message,
                                 Throwable t)
        Issue a log message and throwable with a level of ERROR.
        Parameters:
        message - the message
        t - the throwable
      • error

        public static void error​(String loggerFqcn,
                                 Object message,
                                 Throwable t)
        Issue a log message and throwable with a level of ERROR and a specific logger class name.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        t - the throwable
      • error

        public static void error​(String loggerFqcn,
                                 Object message,
                                 Object[] params,
                                 Throwable t)
        Issue a log message with parameters and a throwable with a level of ERROR.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        params - the message parameters
        t - the throwable
      • errorv

        public static void errorv​(String format,
                                  Object... params)
        Issue a log message with a level of ERROR using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        params - the parameters
      • errorv

        public static void errorv​(String format,
                                  Object param1)
        Issue a log message with a level of ERROR using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the sole parameter
      • errorv

        public static void errorv​(String format,
                                  Object param1,
                                  Object param2)
        Issue a log message with a level of ERROR using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • errorv

        public static void errorv​(String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a log message with a level of ERROR using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • errorv

        public static void errorv​(Throwable t,
                                  String format,
                                  Object... params)
        Issue a log message with a level of ERROR using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        params - the parameters
      • errorv

        public static void errorv​(Throwable t,
                                  String format,
                                  Object param1)
        Issue a log message with a level of ERROR using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the sole parameter
      • errorv

        public static void errorv​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2)
        Issue a log message with a level of ERROR using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • errorv

        public static void errorv​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a log message with a level of ERROR using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • errorf

        public static void errorf​(String format,
                                  Object... params)
        Issue a formatted log message with a level of ERROR.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        params - the parameters
      • errorf

        public static void errorf​(String format,
                                  Object param1)
        Issue a formatted log message with a level of ERROR.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the sole parameter
      • errorf

        public static void errorf​(String format,
                                  Object param1,
                                  Object param2)
        Issue a formatted log message with a level of ERROR.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
      • errorf

        public static void errorf​(String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a formatted log message with a level of ERROR.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • errorf

        public static void errorf​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2)
        Issue a formatted log message with a level of ERROR.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
      • errorf

        public static void errorf​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a formatted log message with a level of ERROR.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • fatal

        public static void fatal​(Object message)
        Issue a log message with a level of FATAL.
        Parameters:
        message - the message
      • fatal

        public static void fatal​(Object message,
                                 Throwable t)
        Issue a log message and throwable with a level of FATAL.
        Parameters:
        message - the message
        t - the throwable
      • fatal

        public static void fatal​(String loggerFqcn,
                                 Object message,
                                 Throwable t)
        Issue a log message and throwable with a level of FATAL and a specific logger class name.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        t - the throwable
      • fatal

        public static void fatal​(String loggerFqcn,
                                 Object message,
                                 Object[] params,
                                 Throwable t)
        Issue a log message with parameters and a throwable with a level of FATAL.
        Parameters:
        loggerFqcn - the logger class name
        message - the message
        params - the message parameters
        t - the throwable
      • fatalv

        public static void fatalv​(String format,
                                  Object... params)
        Issue a log message with a level of FATAL using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        params - the parameters
      • fatalv

        public static void fatalv​(String format,
                                  Object param1)
        Issue a log message with a level of FATAL using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the sole parameter
      • fatalv

        public static void fatalv​(String format,
                                  Object param1,
                                  Object param2)
        Issue a log message with a level of FATAL using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • fatalv

        public static void fatalv​(String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a log message with a level of FATAL using MessageFormat-style formatting.
        Parameters:
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • fatalv

        public static void fatalv​(Throwable t,
                                  String format,
                                  Object... params)
        Issue a log message with a level of FATAL using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        params - the parameters
      • fatalv

        public static void fatalv​(Throwable t,
                                  String format,
                                  Object param1)
        Issue a log message with a level of FATAL using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the sole parameter
      • fatalv

        public static void fatalv​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2)
        Issue a log message with a level of FATAL using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • fatalv

        public static void fatalv​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a log message with a level of FATAL using MessageFormat-style formatting.
        Parameters:
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • fatalf

        public static void fatalf​(String format,
                                  Object... params)
        Issue a formatted log message with a level of FATAL.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        params - the parameters
      • fatalf

        public static void fatalf​(String format,
                                  Object param1)
        Issue a formatted log message with a level of FATAL.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the sole parameter
      • fatalf

        public static void fatalf​(String format,
                                  Object param1,
                                  Object param2)
        Issue a formatted log message with a level of FATAL.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
      • fatalf

        public static void fatalf​(String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a formatted log message with a level of FATAL.
        Parameters:
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • fatalf

        public static void fatalf​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2)
        Issue a formatted log message with a level of FATAL.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
      • fatalf

        public static void fatalf​(Throwable t,
                                  String format,
                                  Object param1,
                                  Object param2,
                                  Object param3)
        Issue a formatted log message with a level of FATAL.
        Parameters:
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • log

        public static void log​(org.jboss.logging.Logger.Level level,
                               Object message)
        Log a message at the given level.
        Parameters:
        level - the level
        message - the message
      • log

        public static void log​(org.jboss.logging.Logger.Level level,
                               Object message,
                               Throwable t)
        Issue a log message and throwable at the given log level.
        Parameters:
        level - the level
        message - the message
        t - the throwable
      • log

        public static void log​(org.jboss.logging.Logger.Level level,
                               String loggerFqcn,
                               Object message,
                               Throwable t)
        Issue a log message and throwable at the given log level and a specific logger class name.
        Parameters:
        level - the level
        loggerFqcn - the logger class name
        message - the message
        t - the throwable
      • log

        public static void log​(String loggerFqcn,
                               org.jboss.logging.Logger.Level level,
                               Object message,
                               Object[] params,
                               Throwable t)
        Issue a log message with parameters and a throwable at the given log level.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        message - the message
        params - the message parameters
        t - the throwable
      • logv

        public static void logv​(org.jboss.logging.Logger.Level level,
                                String format,
                                Object... params)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        level - the level
        format - the message format string
        params - the parameters
      • logv

        public static void logv​(org.jboss.logging.Logger.Level level,
                                String format,
                                Object param1)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        level - the level
        format - the message format string
        param1 - the sole parameter
      • logv

        public static void logv​(org.jboss.logging.Logger.Level level,
                                String format,
                                Object param1,
                                Object param2)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        level - the level
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • logv

        public static void logv​(org.jboss.logging.Logger.Level level,
                                String format,
                                Object param1,
                                Object param2,
                                Object param3)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        level - the level
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • logv

        public static void logv​(org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object... params)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        level - the level
        t - the throwable
        format - the message format string
        params - the parameters
      • logv

        public static void logv​(org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        level - the level
        t - the throwable
        format - the message format string
        param1 - the sole parameter
      • logv

        public static void logv​(org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1,
                                Object param2)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        level - the level
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • logv

        public static void logv​(org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1,
                                Object param2,
                                Object param3)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        level - the level
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • logv

        public static void logv​(String loggerFqcn,
                                org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object... params)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        t - the throwable
        format - the message format string
        params - the parameters
      • logv

        public static void logv​(String loggerFqcn,
                                org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        t - the throwable
        format - the message format string
        param1 - the sole parameter
      • logv

        public static void logv​(String loggerFqcn,
                                org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1,
                                Object param2)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
      • logv

        public static void logv​(String loggerFqcn,
                                org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1,
                                Object param2,
                                Object param3)
        Issue a log message at the given log level using MessageFormat-style formatting.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        t - the throwable
        format - the message format string
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • logf

        public static void logf​(org.jboss.logging.Logger.Level level,
                                String format,
                                Object... params)
        Issue a formatted log message at the given log level.
        Parameters:
        level - the level
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        params - the parameters
      • logf

        public static void logf​(org.jboss.logging.Logger.Level level,
                                String format,
                                Object param1)
        Issue a formatted log message at the given log level.
        Parameters:
        level - the level
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the sole parameter
      • logf

        public static void logf​(org.jboss.logging.Logger.Level level,
                                String format,
                                Object param1,
                                Object param2)
        Issue a formatted log message at the given log level.
        Parameters:
        level - the level
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
      • logf

        public static void logf​(org.jboss.logging.Logger.Level level,
                                String format,
                                Object param1,
                                Object param2,
                                Object param3)
        Issue a formatted log message at the given log level.
        Parameters:
        level - the level
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • logf

        public static void logf​(org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object... params)
        Issue a formatted log message at the given log level.
        Parameters:
        level - the level
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        params - the parameters
      • logf

        public static void logf​(org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1)
        Issue a formatted log message at the given log level.
        Parameters:
        level - the level
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the sole parameter
      • logf

        public static void logf​(org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1,
                                Object param2)
        Issue a formatted log message at the given log level.
        Parameters:
        level - the level
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
      • logf

        public static void logf​(org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1,
                                Object param2,
                                Object param3)
        Issue a formatted log message at the given log level.
        Parameters:
        level - the level
        t - the throwable
        format - the format string, as per String.format(String, Object...)
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • logf

        public static void logf​(String loggerFqcn,
                                org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1)
        Log a message at the given level.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        t - the throwable cause
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the sole parameter
      • logf

        public static void logf​(String loggerFqcn,
                                org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1,
                                Object param2)
        Log a message at the given level.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        t - the throwable cause
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
      • logf

        public static void logf​(String loggerFqcn,
                                org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object param1,
                                Object param2,
                                Object param3)
        Log a message at the given level.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        t - the throwable cause
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        param1 - the first parameter
        param2 - the second parameter
        param3 - the third parameter
      • logf

        public static void logf​(String loggerFqcn,
                                org.jboss.logging.Logger.Level level,
                                Throwable t,
                                String format,
                                Object... params)
        Log a message at the given level.
        Parameters:
        loggerFqcn - the logger class name
        level - the level
        t - the throwable cause
        format - the format string as per String.format(String, Object...) or resource bundle key therefor
        params - the message parameters