Logger

object Logger

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

Functions

d
Link copied to clipboard
fun d(tag: String?, message: String, throwable: Throwable? = null)
ログ(Debug)を出力します。
e
Link copied to clipboard
fun e(tag: String?, message: String, throwable: Throwable? = null)
ログ(Error)を出力します。
equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
i
Link copied to clipboard
fun i(tag: String?, message: String, throwable: Throwable? = null)
ログ(Info)を出力します。
toString
Link copied to clipboard
open fun toString(): String
v
Link copied to clipboard
fun v(tag: String?, message: String, throwable: Throwable? = null)
ログ(Verbose)を出力します。
w
Link copied to clipboard
fun w(tag: String?, message: String, throwable: Throwable? = null)
ログ(Warning)を出力します。

Properties

level
Link copied to clipboard
var level: LogLevel
ログレベルの取得および設定を行います。