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(com.google.common.flogger.backend.LogData, com.google.common.flogger.backend.SimpleMessageFormatter.SimpleLogHandler).
-
-