Interface Logger.LogBackEnd

  • All Known Implementing Classes:
    Logger.Slf4jLogBackEnd
    Enclosing class:
    Logger

    public static interface Logger.LogBackEnd
    Interface for a logging backend that can be attached to the logger.
    • Method Detail

      • log

        void log​(java.lang.Class<?> clazz,
                 Logger.LogLevel loglevel,
                 java.lang.String msg,
                 java.lang.Object... params)
        Invoked for every logging event.
        Parameters:
        clazz - the class that sends the log message.
        loglevel - the logging level.
        msg - the message format string.
        params - the message parameters for the format string.