inappmessaging / io.karte.android.core.logger / Logger

Logger

object Logger

ログを出力するためのクラスです。

Properties

level

ログレベルの取得および設定を行います。

var level: LogLevel

Functions

d

ログ(Debug)を出力します。

fun d(tag: String?, message: String, throwable: Throwable? = null): Unit

e

ログ(Error)を出力します。

fun e(tag: String?, message: String, throwable: Throwable? = null): Unit

i

ログ(Info)を出力します。

fun i(tag: String?, message: String, throwable: Throwable? = null): Unit

v

ログ(Verbose)を出力します。

fun v(tag: String?, message: String, throwable: Throwable? = null): Unit

w

ログ(Warning)を出力します。

fun w(tag: String?, message: String, throwable: Throwable? = null): Unit