e

open fun e(    @Nullable pair: Pair<String, String>,     @NonNull tag: String,     @NonNull message: String)

Send an ERROR log message.

Parameters

pair

Used to track the class &method name without obfuscation

tag

Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.

message

The message you would like logged.


open fun e(    @Nullable pair: Pair<String, String>,     @Nullable exception: Throwable,     @NonNull tag: String,     @NonNull message: String)

Send an ERROR log message.

Parameters

pair

Used to track the class &method name without obfuscation

exception

An exception to log

tag

Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.

message

The message you would like logged.