# Functions
Apply a pipeline of log handlers, the handlers will are applied with the from right to left so the earlier handlers are the outermost ones, so for an incoming message 'msg' and handlers 'h1', 'h2', 'h3': msg -> Compose(h1,h2,h3)(baseLogger) = msg -> h1 -> h2 -> h3 -> baseLogger.
Creates a Logger that uses a uses a non-blocking ring buffered channel.
Creates a logger that removes lines from output when the predicate evaluates true.
Creates a logger that forks log messages to each of its outputLoggers.
Returns a Logger that wraps the outputLogger passed and does not block on calls to Log.
No description provided by the author
# Constants
No description provided by the author
# Structs
No description provided by the author
# Type aliases
This represents an 'AND' type logger.