Package-level declarations
LogSink is the output SPI (emit + optional flush). Bundled sinks: DefaultLogSink (routes to the platform-native logger), ConsoleSink (println), RemoteLogSink (delegates to a sender), and TestSink (capture for tests). Sinks compose: wrap another sink to redact, sample, or route.
Types
Link copied to clipboard
Link copied to clipboard
A LogSink that delegates to the platform's native logging mechanism.
Link copied to clipboard
class RemoteLogSink(logFormatter: LogEventFormatter = LogFormatters.json(false), send: (String) -> Unit) : LogSink