w

open fun w(tag: String, msg: String, tr: Throwable)

Prints a message at WARN priority.

Parameters

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 w(tag: String, msg: String)

Prints a message at WARN priority.

Parameters

tag

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

msg

The actual message to be logged.


open fun w(tag: String, tr: Throwable)

Prints a message at WARN priority.

Parameters

tag

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

tr

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