Arbor

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.

Properties

Link copied to clipboard
const val DEBUG: Int = 1

Debug level message

Link copied to clipboard
const val ERROR: Int = 5

Error level message

Link copied to clipboard

Immutable set of all sown seedlings in the forest.

Link copied to clipboard
const val INFO: Int = 3

Info level message

Link copied to clipboard
const val VERBOSE: Int = 2

Verbose level message

Link copied to clipboard
const val WARNING: Int = 4

Warning level message

Link copied to clipboard
const val WTF: Int = 6

WTF level message

Functions

Link copied to clipboard
fun d(msg: () -> String)
fun d(msg: String)
fun d(msg: String, vararg args: Any?)
fun d(throwable: Throwable, msg: () -> String)
fun d(throwable: Throwable, msg: String = "")
fun d(throwable: Throwable, msg: String, vararg args: Any?)

Log a debug message.

Link copied to clipboard
fun e(msg: () -> String)
fun e(msg: String)
fun e(throwable: Throwable, msg: () -> String)
fun e(throwable: Throwable, msg: String = "")

Log an error message.

fun e(msg: String, vararg args: Any?)
fun e(throwable: Throwable, msg: String, vararg args: Any?)

Log a error message.

Link copied to clipboard

Harvest a seedling from the forest.

Link copied to clipboard
fun i(msg: () -> String)
fun i(msg: String)
fun i(throwable: Throwable, msg: () -> String)
fun i(throwable: Throwable, msg: String = "")

Log an info message.

fun i(msg: String, vararg args: Any?)
fun i(throwable: Throwable, msg: String, vararg args: Any?)

Log a info message.

Link copied to clipboard

Clear the forest of all sown seedlings returning Arbor to its natural state.

Link copied to clipboard
fun sow(seedling: ISeedling): Boolean

Sow a seedling into the forest. Logs will call seedlings in the order they have been sown.

Link copied to clipboard

Create a tagged seedling. Tags use a shallow copy snapshot of the current forest for all logging operations.

Link copied to clipboard
fun v(msg: () -> String)
fun v(msg: String)
fun v(msg: String, vararg args: Any?)
fun v(throwable: Throwable, msg: () -> String)
fun v(throwable: Throwable, msg: String = "")
fun v(throwable: Throwable, msg: String, vararg args: Any?)

Log a verbose message.

Link copied to clipboard
fun w(msg: () -> String)
fun w(msg: String)
fun w(msg: String, vararg args: Any?)
fun w(throwable: Throwable, msg: () -> String)
fun w(throwable: Throwable, msg: String = "")
fun w(throwable: Throwable, msg: String, vararg args: Any?)

Log a warning message.

Link copied to clipboard
fun wtf(msg: () -> String)
fun wtf(msg: String)
fun wtf(msg: String, vararg args: Any?)
fun wtf(throwable: Throwable, msg: () -> String)
fun wtf(throwable: Throwable, msg: String = "")
fun wtf(throwable: Throwable, msg: String, vararg args: Any?)

Log a wtf message.