hwsecurity / de.cotech.hw.util / HwTimber / Tree /

Tree

abstract class Tree

A facade for handling logging calls. Install instances via Timber.plant().

Functions

Name Summary
d

open fun d(t: Throwable)

Log a debug exception.

open fun d(message: String, args: Array<Any>)

Log a debug message with optional format args.

open fun d(t: Throwable, message: String, args: Array<Any>)

Log a debug exception and a message with optional format args.

e

open fun e(t: Throwable)

Log an error exception.

open fun e(message: String, args: Array<Any>)

Log an error message with optional format args.

open fun e(t: Throwable, message: String, args: Array<Any>)

Log an error exception and a message with optional format args.

getTag open fun getTag(): String
i

open fun i(t: Throwable)

Log an info exception.

open fun i(message: String, args: Array<Any>)

Log an info message with optional format args.

open fun i(t: Throwable, message: String, args: Array<Any>)

Log an info exception and a message with optional format args.

log

open fun log(priority: Int, t: Throwable)

Log at {@code priority} an exception.

open fun log(priority: Int, message: String, args: Array<Any>)

Log at {@code priority} a message with optional format args.

open fun log(priority: Int, t: Throwable, message: String, args: Array<Any>)

Log at {@code priority} an exception and a message with optional format args.

v

open fun v(t: Throwable)

Log a verbose exception.

open fun v(message: String, args: Array<Any>)

Log a verbose message with optional format args.

open fun v(t: Throwable, message: String, args: Array<Any>)

Log a verbose exception and a message with optional format args.

w

open fun w(t: Throwable)

Log a warning exception.

open fun w(message: String, args: Array<Any>)

Log a warning message with optional format args.

open fun w(t: Throwable, message: String, args: Array<Any>)

Log a warning exception and a message with optional format args.

wtf

open fun wtf(t: Throwable)

Log an assert exception.

open fun wtf(message: String, args: Array<Any>)

Log an assert message with optional format args.

open fun wtf(t: Throwable, message: String, args: Array<Any>)

Log an assert exception and a message with optional format args.

Properties

Name Summary
explicitTag val explicitTag: ThreadLocal<String>

Inheritors

Name
HwTimber