Interface ConfigLogger.Handler
- Enclosing class:
ConfigLogger
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
The handler interface for processing log messages
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandle(ConfigLogger.LogLevel level, Class<?> clazz, String message, Throwable throwable) Handle a log message
-
Method Details
-
handle
Handle a log message- Parameters:
level- the log levelclazz- the calling classmessage- the messagethrowable- the throwable, may be null
-