Logger

object Logger

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

Properties

Link copied to clipboard

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

Functions

Link copied to clipboard
fun d(tag: String?, message: String, throwable: Throwable? = null)

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

Link copied to clipboard
fun e(tag: String?, message: String, throwable: Throwable? = null)

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

Link copied to clipboard
fun i(tag: String?, message: String, throwable: Throwable? = null)

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

Link copied to clipboard
fun v(tag: String?, message: String, throwable: Throwable? = null)

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

Link copied to clipboard
fun w(tag: String?, message: String, throwable: Throwable? = null)

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