Interface Logger.LogBackEnd
-
- All Known Implementing Classes:
Logger.Slf4jLogBackEnd
- Enclosing class:
- Logger
public static interface Logger.LogBackEndInterface for a logging backend that can be attached to the logger.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidlog(Class<?> clazz, Logger.LogLevel loglevel, String msg, Object... params)Invoked for every logging event.
-
-
-
Method Detail
-
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.
-
-