logd

inline fun logd(throwable: Throwable? = null, tag: String? = null, message: () -> Any?)

DEBUG logger.

Example :

logd { "Hello, Affogato" }
logd(tag = "your tag") { "Hello, Affogato" }

Since

1.7.0

Parameters

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.

message

Lambda: The message you would like logged.

See also