assert

@JvmStatic
@JvmName(name = "wtf")
fun assert(tag: String?, message: String, throwable: Throwable?)

What a Terrible Failure: Report an exception that should never happen.

Since

1.5.0

Parameters

message

String: The message you would like logged. This value cannot be null.

throwable

Throwable: An exception to log This value may be null.

tag

String: Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs. This value may be null.