TransformedPipe

class TransformedPipe(val pipe: LoggerPipe, val transformers: List<LogTransformer>) : LoggerPipe(source)

A LoggerPipe that transforms the message before putting it into the next pipe

See also

Constructors

Link copied to clipboard
constructor(pipe: LoggerPipe, transformers: List<LogTransformer>)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun debug(message: String)

Log a debug message to the console

Link copied to clipboard
fun error(message: String)

Log an error message to the console

Link copied to clipboard
fun fatal(message: String)

Log a fatal message to the console

Link copied to clipboard
fun info(message: String)

Log an info message to the console

Link copied to clipboard
open override fun log(level: LogLevel, message: String)

Log a message to the console

Link copied to clipboard
fun success(message: String)

Log a success message to the console

Link copied to clipboard
fun warn(message: String)

Log a warning message to the console