getLogCat

fun getLogCat(clazz: Class<*>): LogCat(source)

Deprecated

The clazz parameter is passed in just to get the class name as the default log tag, but this may cause misunderstanding for some users, so this API is marked as deprecated at the WARNING level.

Replace with

invoke(clazz.simpleName)

Get log with clazz.

Since

1.3.4


fun getLogCat(tag: String = ""): LogCat(source)

Deprecated

Use invoke instead.

Replace with

invoke(tag)

Get log with tag.

Since

1.3.4