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 Summary

    Modifier and Type
    Method
    Description
    void
    log(Class<?> clazz, Logger.LogLevel loglevel, String msg, Object... params)
    Invoked for every logging event.
  • Method Details

    • log

      void log(Class<?> clazz, Logger.LogLevel loglevel, String msg, 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.