Package-level declarations

Types

Link copied to clipboard
object Arbor

Primary interface to sow, harvest, and perform logging actions against seedlings. The implementation is no op by default requiring a seedling to be sown for end user usage.

Link copied to clipboard
data class Branch

An instance of the Arbor API representing the state of the forest.

Link copied to clipboard
interface ISeedling

The root logging interface.

Link copied to clipboard
data class LoggingException(msg: String) : Exception

A generic exception thrown when logging can not be performed.

Link copied to clipboard
Seedling
Link copied to clipboard

Basic logger that prints messages to the JavaScript Console. Levels are mapped as:

class Seedling @JvmOverloads constructor(printStreamErr: PrintStream = System.err, printStreamOut: PrintStream = System.out, callStackIndex: Int = CALL_STACK_INDEX) : ISeedling

Basic logger that prints Error and WTF messages to the System.err stream. All other logs are printed to the System.out stream. Messages are line printed in the format of TAG: Message.

Functions

Link copied to clipboard
fun arbor(logLevel: LogLevel = LogLevel.D, tag: Branch = defaultBranch, message: () -> String)
Link copied to clipboard
fun Branch.d(msg: String, vararg args: Any?)

Log a debug message.

Link copied to clipboard
fun Branch.e(msg: String, vararg args: Any?)

Log an error message.

Link copied to clipboard
fun Branch.i(msg: String, vararg args: Any?)

Log an info message.

Link copied to clipboard
fun Branch.v(msg: String, vararg args: Any?)

Log a verbose message.

Link copied to clipboard
fun Branch.w(msg: String, vararg args: Any?)

Log a warning message.

Link copied to clipboard
fun Branch.wtf(msg: String, vararg args: Any?)

Log a wtf message.