Package io.spine.logging.flogger.backend
Interface SimpleMessageFormatter.SimpleLogHandler
-
- Enclosing class:
- SimpleMessageFormatter
@Deprecated public static interface SimpleMessageFormatter.SimpleLogHandler
Deprecated.Use aLogMessageFormatterand obtain the level and cause separately.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidhandleFormattedLogMessage(Level level, String message, @Nullable Throwable thrown)Deprecated.Handles a single formatted log statement with the given level, message and "cause".
-
-
-
Method Detail
-
handleFormattedLogMessage
void handleFormattedLogMessage(Level level, String message, @Nullable Throwable thrown)
Deprecated.Handles a single formatted log statement with the given level, message and "cause". This is called back exactly once, from the same thread, for every call made toSimpleMessageFormatter.format(io.spine.logging.flogger.backend.LogData, io.spine.logging.flogger.backend.SimpleMessageFormatter.SimpleLogHandler).
-
-