println

open fun println(priority: Int, tag: String, msg: String, tr: Throwable)

Instructs the LogNode to print the log data provided. Other LogNodes can be chained to the end of the LogNode as desired.

Parameters

priority

Logger level of the data being logged. Verbose, Error, etc.

tag

Tag for for the log data. Can be used to organize log statements.

msg

The actual message to be logged.

tr

If an exception was thrown, this can be sent along for the logging facilities to extract and print useful information.


open fun println(priority: Int, tag: String, msg: String)

Instructs the LogNode to print the log data provided. Other LogNodes can be chained to the end of the LogNode as desired.

Parameters

priority

Logger level of the data being logged. Verbose, Error, etc.

tag

Tag for for the log data. Can be used to organize log statements.

msg

The actual message to be logged. The actual message to be logged.