object Logger
ログを出力するためのクラスです。
level |
ログレベルの取得および設定を行います。 var level: LogLevel |
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 |